Questions tagged [fdb]

fdb is the command-line debugger for ActionScript 3.

fdb can be used to debug Flash, Flex, and AIR applications. It is included as part of the Flex SDK and the AIR SDK.

fdb is also a file extension used for FoxPro or Firebird database files.

34 questions
1
vote
1 answer

How to restore a Firebird database in a Python script using FDB?

Firebird 3.0.4 is installed and Python v3.7.7 on a Windows10 64 bits system. I can restore a database with the following command: gbak.exe -r -USER user -PASSWORD password database.fdk database.fdb I would like to do the same using fdb (Firebird…
hganger
  • 147
  • 2
  • 12
1
vote
1 answer

Unable to select from table starting with "@" in Python fdb

I'm using FDB module to fetch data from Firebird database using Python. I'm trying to fetch data from table named @TABLE_NAME, it was not my idea to include "@" in the table name, and it makes it impossible to execute statements on it. When I try to…
1
vote
1 answer

Python 3.5.1 & fdb 1.5.1 - fdb.fbcore.Cursor object at 0x00175BB0

I try wrote script in Python, who: connect to Firebird database execute select in connected database send e-mail for each one result record from database rerutn by SELECT. I use: Windows Vista x64 SP2, Python version 3.5.1, firebird driver fdb…
1
vote
1 answer

FDB driver Firebird with function 'fb_interpret' not found

I'm using windows 2003 + Python 2.7 + firebird 2.1 with FDB 1.4 driver. In windows XP works fine, but in windows 2003 I get the error on my script. I just found on the net 1 polish with the same error.…
1
vote
2 answers

Need to import fdb data file into mysql database

How can I import .fdb file into mysql database?
nitishkrs
  • 81
  • 1
  • 7
0
votes
0 answers

Attempt to fetch row of results after statement that does not produce result set

Python send error exeption response like: Attempt to fetch row of results after statement that does not produce result set. I have 2 connection to 2 diffirent DB and it's say, like it's send query after result. How to fix that problem? I need to…
Enzer
  • 11
  • 1
0
votes
0 answers

How to connect fdb database using Python in Ubuntu?

I am trying to connect fdb database using python. I am remotely connected to ubuntu. I have tried this: path = '/home/ubuntu/Firebird4.0/A.fdb' con = fdb.connect(host=host, database=path, user=user, password=pswd2, charset='UTF8') and many…
sunShine
  • 41
  • 1
  • 9
0
votes
1 answer

How to open firebird .fdb file in VS Code?

I want to see and check .fdb file. And I am using VS Code to open it. I installed "DB Explorer For Firebird Databases" for this and file opened. However, the opened file was corrupt. How can I fix this?
sunShine
  • 41
  • 1
  • 9
0
votes
1 answer

Get data from tables in Firebird database

I'm trying to get the data from the tables in a Firebird database. So far, I've managed to make a successful connection and to get the table names. Following some other posts here, I've managed to "select" (whatever that means and implies) with…
0
votes
0 answers

How to set the set_stream_blob_threshold in FIrebird fdb python library?

Trying to migrate data from Firebird DB to MS Sql Server using fdb(2.0.1) and pyodbc. Since there are blobs in the Firebird database which are over 64K, they are being returned as BlobReader objects. Since i would like not to deal with the bytes…
Dan
  • 2,209
  • 3
  • 23
  • 44
0
votes
0 answers

Knowing length of query without having to index and execute potential slow query (with firebird db, executing query with fdb cursor in python)

What should be another alternative from indexing, if I want to quickly know the length of the query first before executing a potential slow query (such as multiple regions with a long date range)? Indexing query, Counting with subquery of…
Joey
  • 93
  • 1
  • 9
0
votes
1 answer

using fdb on mac os opens in opera and not firefox

Is there a way to set the flex debugger (fdb) to automatically open the debuggable swf in firefox instead of Opera? The app I am starting from works in firefox but not Opera and it does not have to support Opera anyway.
surtyaar
  • 2,532
  • 1
  • 18
  • 13
0
votes
1 answer

fdb always starts in IE

I don't known what happened but fdb.exe now always start debug swf in IE And IE not my default browser! How to return its default behaiviuor? (embeded browser only with swf)
vinnitu
  • 4,234
  • 10
  • 41
  • 59
0
votes
0 answers

FDB file extension may what database?

I got a fdb file, I thought it's a firebird database file, but cant't open using firebird, and I try sybase again, not work. this file used for a B/S software (java) client cache, maybe pretty old database, and this is not a compressed file,I can…
itsuki
  • 31
  • 1
  • 4
0
votes
1 answer

how to restore or connect a database of 32 bit system data on 64 bit system?

While connecting to a bak file using firebird on 64 bit Ubuntu system I am getting error as file is invalid. But may be it is because of bit issue of the system. Because I have connected the same database on my Ubuntu 32 bit system. So here what…