我使用Python 3.5進行此任務+庫fdb。我的腳本: import fdb
con = fdb.connect(
host='host', database='database',
user='IAKUZNETSOV', password='111111'
)
cur = con.cursor()
cur.execute("select DATA from ATTA
我有此腳本 SELECT = """
select
coalesce (p.ID,'') as id,
coalesce (p.name,'') as name,
from TABLE as p
"""
self.cur.execute(SELECT)
for row in self.cur.itermap():
我一直在想出一種方法來交互式調試Adobe AIR JavaScript應用程序。似乎沒有支持這個的IDE(是嗎?)。 但是,有fdb,其中according to this,您可以使用它來調試Adobe AIR應用程序。它表示以下內容: 如果AIR應用程序是基於SWF的,則調試器僅控制ActionScript代碼的執行。如果AIR應用程序是基於HTML的,那麼調試器僅控制JavaScript代碼