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
0
votes
2 answers

How do you "step into" with fdb.exe?

exe now for debugging. The problem is I don't know how to do "step into" with that. There're two command for stepping, "step" and "next", but it all behaves similar to "step over" in a GUI debugger. So is there any good way? Maybe I need to set a…
tactoth
  • 897
  • 1
  • 12
  • 24
0
votes
1 answer

Debugging Adobe AIR JavaScript app with fdb not working

I've been trying to figure out a way to interactively debug an Adobe AIR JavaScript application. There does not appear to be an IDE that supports this (is there?). However, there is fdb, which according to this, you can use to debug Adobe AIR apps.…
Josh
  • 7,232
  • 8
  • 48
  • 75
0
votes
2 answers

python fdb save huge data from database to file

I have this script 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(): …
peter
  • 4,289
  • 12
  • 44
  • 67
0
votes
4 answers

Python fdb prepared statement list

Is it possible to add a list as prepared statement parameter in the fdb library in Python? Example: cur = con.cursor() list = [1,2,3] cur.execute("""SELECT * FROM data d WHERE d.field IN ?""", (list,)) Result: "Error while preparing SQL…
Manuel Taber
  • 427
  • 5
  • 19
1 2
3