1
vote
4answers
52 views
Error message “Incorrect values within SQLDA structure” with Firebird and Delphi 2009
Hi,
I'm strugling with error message "Incorrect values within SQLDA structure" when I'm trying to update blob field within Firebird 2.1 database from Delphi 2009 DBX application.
However I get the …
2
votes
3answers
157 views
Firebird, which driver?
Now that I have decided upon Firebird, with the help of StackOverflow :), which driver do you recommend?
Delphi's DBX
Another vendor's DBX
Some native driver
Thanks.
0
votes
1answer
82 views
debugging a thread process using gdb/dbx
This might be genuine question but i am asking here since i was out of any clue when i was asked this question in an interview.
how could we debug a thread which was created by another thread?
let's …
8
votes
8answers
337 views
Most tricky/useful commands for gdb debugger
Hi All,
Can you post your most tricky and useful commands while you run a debugger like gdb or dbx.
1
vote
3answers
127 views
Optimized code on Unix?
What is the best and easiest method to debug optimized code on Unix which is written in C?
Sometimes we also don't have the code for building an unoptimized library.
0
votes
2answers
128 views
C code - need to clarify the effectiveness.
Hi I have written a code based upon a requirement.
(field1_6)*(field2_30)*(field3_16)*(field4_16)*(field5_1)*(field6_6)*(field7_2)*(field8_1)*.....
this is one bucket(8 fields) of data. we will …
2
votes
3answers
325 views
How can I execute a sql command with a blob param in dbx?
I have a TSqlDataSet which has a blob field, I need to get the data of this blob field in the BeforeUpdateRecord event of the provider and execute an update command, I've tried this:
Cmd := …
1
vote
1answer
71 views
viewing the stack when a crash happens
hi,
i am using AIX OS.here i am facing a problem that when ever the process crashes there is no stack written in the log.it just gives an information of signal1/10/4 has occured.
but no stack is …
2
votes
2answers
172 views
tb_event_death when single stepping in dbx
When I am single stepping through one thread of a multi threaded program, the debugger gets interrupted with:
0x(some hex ref) : tdb_event_death : ret
dbx: thread has exited -- next aborted
My …
0
votes
1answer
59 views
dbxtool on 64-bit linux won’t load 64-bit version of dbx?
I am using the Linux version of dbxtool to debug a 64-bit programme called frankie:
file ../support/frankie
../support/frankie: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux …
4
votes
6answers
367 views
ADO or DBX using Delphi
Which is better (and for what reasons) to use to connect to MS SQL, Oracle or Firebird from a Delphi Win32 application -- ADO or DBX (Database Express)?
Both allow you to connect to the major …
3
votes
4answers
400 views
Is it possible to create databases programmatically using DBX?
Looks like the TSQLConnection only connects to existing databases, and I could not find another component that allows me to send commands to the database server.
I'm using Delphi 2009 with Firebird …
5
votes
3answers
825 views
Displaying dereferenced STL iterators in gdb
I have an iterator to a map element, and I would like gdb to show me the values of the "first" and "second" elements of that iterator.
For example:
std::map<int,double> aMap;
...fill map...
…
0
votes
2answers
272 views
Why sometimes I get an “Invalid transaction object” exception?
Is there something wrong with this code?
Sometimes I get an unhandled "Invalid transaction object" exception in it:
procedure BlaBla;
var
TD: TDBXTransaction;
begin
TD := …
1
vote
4answers
503 views
how to get as much as possible from dbx
I do TDD on a daily basis for my C++ development on Solaris10. It has greatly reduced the time I have to spend using my debugger but sometime this is the only option.
DBX is pretty powerful but not …
