active questions tagged dbx - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T11:07:59Zhttp://stackoverflow.com/feeds/tag/dbxhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1702487/firebird-which-driver2Firebird, which driver?Mihaela2009-11-09T17:25:41Z2009-11-09T22:09:25Z
<p>Now that I have decided upon <a href="http://stackoverflow.com/questions/1700824/firebird-or-nexusdb">Firebird</a>, with the help of StackOverflow :), which driver do you recommend?</p>
<ul>
<li>Delphi's DBX </li>
<li>Another vendor's DBX</li>
<li>Some native driver</li>
</ul>
<p>Thanks.</p>
http://stackoverflow.com/questions/1678394/debugging-a-thread-process-using-gdb-dbx0debugging a thread process using gdb/dbxjohn2009-11-05T04:40:43Z2009-11-05T04:45:02Z
<p>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.</p>
<p>how could we debug a thread which was created by another thread?
let's say there is a main process and it calles the function pthread_create to create a thread process which is not joinable and that means both teh main process and the newly created thread process will be eecuting their own tasks and if we start debugging the program how could we navigate to the thread that was created?.</p>
<p>thanks in advance.</p>
http://stackoverflow.com/questions/1471226/most-tricky-useful-commands-for-gdb-debugger8Most tricky/useful commands for gdb debuggerjohn2009-09-24T11:59:03Z2009-10-13T16:42:24Z
<p>Hi All,</p>
<p>Can you post your most tricky and useful commands while you run a debugger like gdb or dbx.</p>
http://stackoverflow.com/questions/1553895/optimized-code-on-unix1Optimized code on Unix?john2009-10-12T10:53:01Z2009-10-13T13:25:06Z
<p>What is the best and easiest method to debug optimized code on Unix which is written in C?</p>
<p>Sometimes we also don't have the code for building an unoptimized library.</p>
http://stackoverflow.com/questions/1542001/c-code-need-to-clarify-the-effectiveness0C code - need to clarify the effectiveness.john2009-10-09T05:52:08Z2009-10-09T08:04:43Z
<p>Hi I have written a code based upon a requirement.</p>
<p>(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 receive 20 buckets at a time means totally 160 fields.
i need to take the values of field3,field7 & fields8 based upon predefined condition.
if teh input argument is N then take the three fields from 1st bucket and if it is Y i need
to take the three fields from any other bucket other than 1st one.
if argumnet is Y then i need to scan all the 20 buckets one after other and check
the first field of the bucket is not equal to 0 and if it is true then fetch the three fields of that bucket and exit.
i have written the code and its also working fine ..but not so confident that it is effctive.
i am afraid of a crash some time.please suggest below is the code.</p>
<pre><code>int CMI9_auxc_parse_balance_info(char *i_balance_info,char *i_use_balance_ind,char *o_balance,char *o_balance_change,char *o_balance_sign
)
{
char *pch = NULL;
char *balance_id[MAX_BUCKETS] = {NULL};
char balance_info[BALANCE_INFO_FIELD_MAX_LENTH] = {0};
char *str[160] = {NULL};
int i=0,j=0,b_id=0,b_ind=0,bc_ind=0,bs_ind=0,rc;
int total_bukets ;
memset(balance_info,' ',BALANCE_INFO_FIELD_MAX_LENTH);
memcpy(balance_info,i_balance_info,BALANCE_INFO_FIELD_MAX_LENTH);
//balance_info[BALANCE_INFO_FIELD_MAX_LENTH]='\0';
pch = strtok (balance_info,"*");
while (pch != NULL && i < 160)
{
str[i]=(char*)malloc(strlen(pch) + 1);
strcpy(str[i],pch);
pch = strtok (NULL, "*");
i++;
}
total_bukets = i/8 ;
for (j=0;str[b_id]!=NULL,j<total_bukets;j++)
{
balance_id[j]=str[b_id];
b_id=b_id+8;
}
if (!memcmp(i_use_balance_ind,"Y",1))
{
if (atoi(balance_id[0])==1)
{
memcpy(o_balance,str[2],16);
memcpy(o_balance_change,str[3],16);
memcpy(o_balance_sign,str[7],1);
for(i=0;i<160;i++)
free(str[i]);
return 1;
}
else
{
for(i=0;i<160;i++)
free(str[i]);
return 0;
}
}
else if (!memcmp(i_use_balance_ind,"N",1))
{
for (j=1;balance_id[j]!=NULL,j<MAX_BUCKETS;j++)
{
b_ind=(j*8)+2;
bc_ind=(j*8)+3;
bs_ind=(j*8)+7;
if (atoi(balance_id[j])!=1 && atoi( str[bc_ind] )!=0)
{
memcpy(o_balance,str[b_ind],16);
memcpy(o_balance_change,str[bc_ind],16);
memcpy(o_balance_sign,str[bs_ind],1);
for(i=0;i<160;i++)
free(str[i]);
return 1;
}
}
for(i=0;i<160;i++)
free(str[i]);
return 0;
}
for(i=0;i<160;i++)
free(str[i]);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/325874/how-can-i-execute-a-sql-command-with-a-blob-param-in-dbx2How can I execute a sql command with a blob param in dbx?Fabio Gomes2008-11-28T14:26:38Z2009-09-24T15:29:15Z
<p>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:</p>
<pre><code>Cmd := TSQLQuery.Create(nil);
try
Cmd.SQLConnection := SQLConnection;
Cmd.CommandText := 'UPDATE MYTABLE SET IMAGE = :PIMAGE WHERE ID = :PID';
Cmd.Params.CreateParam(ftBlob, 'PIMAGE ', ptInput).Value := DeltaDS.FieldByName('IMAGE').NewValue; //blob field
Cmd.Params.CreateParam(ftString, 'PID', ptInput).Value := DeltaDS.FieldByName('ID').NewValue;
Cmd.ExecSQL;
finally
Cmd.Free;
end;
</code></pre>
<p>When I execute that I get an EDatabaseError with message: 'No value for parameter PIMAGE.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/1470389/viewing-the-stack-when-a-crash-happens1viewing the stack when a crash happensjohn2009-09-24T08:21:36Z2009-09-24T08:43:15Z
<p>hi,</p>
<p>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 shown.
since the code is an optimized code i am even not able to debud using dbx.gdb is not installed.
could you please suggest how to see the stack trace whenever the program crashes.
might be with any other tool or incase any cheet method to follow to view the actual stack trace?</p>
<p>advance thanks for the help.</p>
http://stackoverflow.com/questions/313992/tbeventdeath-when-single-stepping-in-dbx2tb_event_death when single stepping in dbxChris Huang-Leaver2008-11-24T12:00:15Z2009-09-17T12:36:06Z
<p>When I am single stepping through one thread of a multi threaded program, the debugger gets interrupted with:</p>
<pre><code>0x(some hex ref) : tdb_event_death : ret
dbx: thread has exited -- next aborted
</code></pre>
<p>My guess is a thread somewhere in the program I am debugging has stopped, but it's not the one I'm debugging so I can't see why I have to restart the debugging process to continue. </p>
<p>I have a work around, I set a breakpoint on the next line then rerun, which works but is very annoying, it is really slowing down my debugging. Does anyone know a better way ? (single step ALL threads for example)</p>
http://stackoverflow.com/questions/1271226/dbxtool-on-64-bit-linux-wont-load-64-bit-version-of-dbx0dbxtool on 64-bit linux won't load 64-bit version of dbx?frankster2009-08-13T10:41:51Z2009-08-21T15:05:24Z
<p>I am using the Linux version of dbxtool to debug a 64-bit programme called frankie:</p>
<pre><code>file ../support/frankie
../support/frankie: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.6.4, dynamically linked (uses shared libs), for GNU/Linux 2.6.4, not stripped
</code></pre>
<p>When I attempt to load the executable within dbxtool, I get an "unsupported architecture" message, which I assume means that the 32-bit version of dbx is loaded:</p>
<pre><code>(dbx) debug ~/support/frankie
dbx: ~/support/frankie has unsupported architecture or file format
</code></pre>
<p>However, if I run dbx from the commandline, it is able to load the file, presumably by automatically loading the 64-bit version of the debugger.</p>
<pre><code>(dbx) debug ../support/frankie
Reading frankie
Reading ld-linux-x86-64.so.2
Reading libm.so.6
Reading libncurses.so.5
Reading libc.so.6
Reading libdl.so.2
</code></pre>
<p>I cannot find any option that would force dbxtool to use the 64-but debugger, in fact the only one I can find is one to force use of the 32-bit debugger in a 64-bit environment!</p>
<p>any suggestions? </p>
http://stackoverflow.com/questions/1305531/ado-or-dbx-using-delphi4ADO or DBX using DelphiRichard K2009-08-20T11:28:11Z2009-08-21T08:50:16Z
<p>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)?</p>
<p>Both allow you to connect to the major databases. I like the way ADO does it all with a connection string change and the fact that ADO and the drivers are included with Windows so nothing extra to deploy (it seems, correct me if I'm wrong).</p>
<p>DBX is also flexible and I can compile the drivers into my app, can I not? </p>
<p>I really am keen to have a single source if possible, with the ability to vary databases depending on the customer's IT department/preferences.</p>
<p>But which is easier to program, performs better, uses memory most efficiently? Any other things to differentiate them on? </p>
<p>Thanks, Richard</p>
http://stackoverflow.com/questions/400114/is-it-possible-to-create-databases-programmatically-using-dbx3Is it possible to create databases programmatically using DBX?Erick Sasse2008-12-30T12:03:47Z2009-06-05T12:44:16Z
<p>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.</p>
<p>I'm using Delphi 2009 with Firebird and MSSQL.</p>
<p>One idea that came was to connect to a system database (master or tempdb in MSSQL for example) and then send create commands to the server. This could be an option for MSSQL, but I'm not sure for Firebird.</p>
<p>I'm also aware of the new DBX metadata in Delphi 2009, but I couldn't find a way to create databases using it. All examples I've found is to modify existing databases.</p>
http://stackoverflow.com/questions/322322/displaying-dereferenced-stl-iterators-in-gdb5Displaying dereferenced STL iterators in gdbkchoose22008-11-26T22:03:20Z2009-05-08T01:29:08Z
<p>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:</p>
<pre><code>std::map<int,double> aMap;
...fill map...
std::map<int,double>::const_iterator p = aMap.begin();
</code></pre>
<p>I can use p.first and p.second in the code, but can't see them in gdb. For what it's worth, in dbx one could do something like "print p.node.second_", but I can find anything similar in gbd.</p>
<p>I am totally willing to have a function into which I pass the object types, but I've been unable to get that to work either.</p>
<p>Any ideas?
Thanks!</p>
http://stackoverflow.com/questions/420022/why-sometimes-i-get-an-invalid-transaction-object-exception0Why sometimes I get an "Invalid transaction object" exception?Erick Sasse2009-01-07T11:48:49Z2009-03-03T19:17:04Z
<p>Is there something wrong with this code?<br />
Sometimes I get an unhandled "Invalid transaction object" exception in it:</p>
<pre><code>procedure BlaBla;
var
TD: TDBXTransaction;
begin
TD := SQLConnection.BeginTransaction;
try
SQLConnection.ExecuteDirect('some sql command');
SQLConnection.ExecuteDirect('some sql command');
SQLConnection.CommitFreeAndNil(TD);
except
SQLConnection.RollbackFreeAndNil(TD);
end;
end;
</code></pre>
<p>This exception is being raised to the user, so I assume it's raised by RollbackFreeAndNil, since all rest is inside a try..except.</p>
<p>Should I wrap RollbackFreeAndNil with another try..except? What a mess.</p>
<p>I'm using Delphi 2009, DBX with Firebird 2.1 and Devart's driver.</p>
http://stackoverflow.com/questions/220040/how-to-get-as-much-as-possible-from-dbx1how to get as much as possible from dbxNazgob2008-10-20T21:37:16Z2008-12-10T01:14:24Z
<p>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.</p>
<p>DBX is pretty powerful but not that user friendly. Note that I'm talking about console DBX not the SunStudio GUI for DBX).</p>
<p>What are the best productivity tips you can give for dbx C++ debugging?</p>
<p>PS. Changing debugger is not an option.</p>
http://stackoverflow.com/questions/351052/how-do-you-put-a-breakpoint-on-a-memory-location-in-dbx1How do you put a breakpoint on a memory location in dbx?Jon Ericson2008-12-08T21:48:45Z2008-12-10T00:57:13Z
<p>A co-worker has a C program that fails in a predictable manner because of some corrupted memory. He'd like to use <code>dbx</code> to monitor the memory location once it's allocated in order to pinpoint the code that causes the corruption.</p>
<p>Is this possible? If so what is the syntax to produce a breakpoint at the moment of corruption?</p>
<p>If not, what would be a good approach to fixing this sort of issue?</p>
<p>(My usual tactic is to look at the source control to see what I've changed lately, since that is usually the cause. But the code in question sounds as if it only ever worked by luck, so that won't work. Also, I've already eliminated myself as the culprit by never having worked with the code. ;-)</p>
http://stackoverflow.com/questions/114236/solaris-core-dump-analysis6Solaris Core dump analysisAbu2008-09-22T10:57:11Z2008-10-31T06:04:31Z
<p>I use pstack to analyze core dump files in Solaris</p>
<p>How else can I analyze the core dump from solaris?</p>
<p>What commands can be used to do this?</p>
<p>What other information will be available from the dump? </p>