DBX is a source-level debugger, product of Oracle Coporation (formally Sun Microsystem) used to control the execution of a program (step by step, breakpoints, ...) and inspect the content of the memory.

learn more… | top users | synonyms

0
votes
1answer
21 views

how to fix the dbx “MT support is disabled” error?

I loaded a core file of a program which is multi-threaded. I cannot list threads with below command. (dbx) threads dbx: MT support is disabled (dbx) However, I can list LWPs with lwps. On ...
1
vote
0answers
29 views

DBX Output Different When Using “.” or “->”

There's a function that's not working and I don't understand why, and DBX isn't helping. Below is what I'm talking about. (dbx 12) print ((CCFundExpenseObject *)s1)->GetFundBranchGroup() ((class ...
1
vote
1answer
17 views

why do we need to pass the program path along with the core file to debugger?

Is it relevant that the program is exactly the same build as the one which crashed to generate the core file? dbx <program path> <core path>
0
votes
0answers
27 views

Core-dump due to SEGV in Roguewave library

I have a C++ process which crashes frequently when it accesses a DB access instance. The DB access library uses Roguewave data structures and the crash happens when it tries to find a value from a ...
0
votes
1answer
64 views

DBX core dump on sparc64 and stack trace in/out registers

Suppose I have these functions void foo(int a, int b, int c); void bar(int d); void start(); And I get a core dump which looks something like this foo(<value of a>, <value of b>, ...
1
vote
1answer
61 views

Compiling static template functions on AIX 7.1 xlc++

Our source code has a bunch of standalone static template functions. I need to compile it on AIX 7.1 Power 7 system with IBM's native xlc++ compiler. Using static keyword with standalone functions is ...
1
vote
1answer
80 views

dbx: internal warning writable memory segment of size 0

While trying to load a core file using dbx I get the following warning: dbx: internal warning: writable memory segment 0xfa8b0000[16384] of size 0 in core There doesn't seem to be an explanation ...
1
vote
1answer
58 views

dbx debugger able to pass command line parameters on dbx startup?

I use both GDB and DBX depending on the platform I'm debugging. I need to debug a tool where there are 20 command line parameters that need to be passed. GDB has an option where you can pass these ...
2
votes
3answers
407 views

'Unknown column in where clause' in Delphi but not MySQL

I'm about ready to rip my hair out and take up poop flinging as a living! I have a MySQL query which runs fine in MySQL SELECT p.ID AS DataID, p.timestamp AS Timestamp, sum(p.Value * ...
1
vote
1answer
836 views

DBX error in Delphi XE3, when connecting to a SQL Server database

When I try to connect to a MS SQL Server database using DBX an error pops up saying that the driver is not properly installed, or missing. I tried with ADO driver and it worked like charm, but the ...
0
votes
1answer
105 views

dbx WUA error tracing in code

I am debugging a program for memory leaks. I am getting following error when "check -memuse" is enabled: Write to unallocated (wua) on thread 1: Attempting to write 8 bytes at address ...
1
vote
0answers
130 views

Solaris 10 - dbx dump not showing local variables

I'm a Windows developer who uses WinDbg regularly and fairly easily. I got a Solaris 10.2 core file to analyze using dbx. where (dbx) displayed the stack and I could locate the .so that had the ...
1
vote
1answer
135 views

DBX: AIX equivalents of the Solaris version

I'm a developer who mostly programs in a solaris environment, though our code is compiled on multiple platforms, including AIX. The most stable debugging tool I have access to on both environments is ...
0
votes
0answers
50 views

dbx : display very large string

I wish to know how can I display a very large string (>4K) in "dbx" ? my string is more than 2MB ? Is there any limit on the size of arguments that can be passed in solaris ? Thanks Arpit
0
votes
1answer
89 views

dbx variables not working

I am debugging a piece of code which has complex data structures in it. I want to use dbx variables to hold the values of these structures to avoid pointer indirection every time to see the contents. ...
0
votes
0answers
61 views

Using dbx debugger in net beans

I have a C++ project created using Netbeans 7.0 on a Solaris Machine. I have modified the Netbeans compiler options to choose Sun compiler/dbx instead of gcc/gdb. Yet while debugging, Netbeans ...
0
votes
1answer
121 views

How to set a hardware watchpoint in dbx?

I need to detect when some memory changes in dbx on Solaris. I know in gdb that I would do this with watch <memoryLocation>. However, I am using dbx at the moment, so I need to know how to set ...
2
votes
2answers
87 views

Is there a way to configure dbx to treat a blank command as a repeat of the last command?

In gdb, if I just hit return, it repeats the last command. Is there a way to configure Sun/Oracle/Solaris dbx to do likewise?
0
votes
1answer
43 views

What is equivalent of .gdbinit file for dbx?

I can have an initialization file in my home directory called .gdbinit which is run each time I start a gdb session to customize my environment. What is the equivalent file name in dbx?
1
vote
1answer
85 views

What could possibly lead to the following assembly execution result

I was debugging under IBM AIX with dbx. I was seeing the following: (dbx) print $r4 0x00000001614aa050 (dbx) print *((int64*)0x00000001614aa050) -1 (dbx) print $r3 0x0000000165e08468 Then I ...
0
votes
3answers
595 views

source lines while debugging a core dump

In c or c++ While debugging a core dump,i.e., if we are left with a coredump file and try to debug using that core file is there a way we can see the last few lines of code before the dump occured.the ...
0
votes
1answer
177 views

How can I print the data contained by a C++ Map while debugging using DBX

I want to know the contents of a Map while debugging a c++ program. I am using command line dbx. I have pointer to the map. Is there a way in which i can get the data printed. -- Edit: p *dataMap ...
1
vote
1answer
156 views

How to view the SQL error message in a Delphi's DBX transaction?

I've seen this somewhere in SO some time ago, but I couldn't find it now. I remember that one of the error events in some component (TSQLDataSet, TDataSetProvider, TClientDataSet or else) would give ...
10
votes
1answer
411 views

Custom transaction level in Delphi DBX firebird

I am looking for a way to specify a custom transaction level in Delphi's DBX using the firebird driver. I am using Delphi XE. In the Parameter editor of the TSQLConnection component I can set various ...
0
votes
1answer
117 views

copy tables between databases on Cbuilder

i am trying to optimize a code to copy about 7000 records from a table to other. here is my code: SQLQuery1->Open(); while (!SQLQuery1->Eof) { Table1->Append(); ...
-1
votes
1answer
61 views

php_dbx extension

It seems like PHP have removed dbx-extension as default install since version 5. I am wondering, why? Is dbx out? And where can I download the extension, I did google, but I can't find it. Thank ...
3
votes
1answer
231 views

Large executable causes debuggers to hang

I have a C++ binary that is 190 MB in size. When I put this binary into dbx and try to create a breakpoint, dbx hangs. While dbx is hung, I have observed its memory quickly grow to over 10 GB. ...
2
votes
2answers
404 views

How to retrieve information from a field that has the property Required set as false?

I have the following DBX structure in my software: TSQLDataSet -> TDataSetProvider -> TClientDataSet One of the fields from my TClientDataSet has the property Required set to false, because ...
1
vote
2answers
337 views

Delphi won't let me insert rows with missing columns, but with triggers and generators for those fields

The problem is simple: I have triggers and generators in my Firebird 2.1.4 database to make a column auto increment on each insert. The architecture of the system is as follows: TSQLConnection > ...
1
vote
1answer
132 views

how do I call dbx'es own print function from a pretty print function for dbx

I am trying to write a pretty print routing for dbx on solaris to pretty print maps. Now the maps may contain elements of (one) arbitrary type. I dont want to know what they are or handle that. I want ...
2
votes
1answer
266 views

DBRichEdit RTF encoding lost transitioning application from BDE to DBX

My team is converting a BDE application to DBX using D2007. A TTable has been replaced with a TSQLDataSet/TDataSetProvider/TClientDataSet combination. A TStringField has been used to access the RTF ...
0
votes
1answer
111 views

Proprietary DBX File Type

I am trying to mine data out of a .dbx file. This file is NOT associated with Microsoft Outlook Express. It is for a Laboratory Information Management System. Unfortunately their project management ...
1
vote
1answer
328 views

What is gdb/dbx doing when ddd is “waiting for it to get ready”?

I use ddd as a front-end for both gdb and dbx for C++ programs. Quite often, without any apparent cause, I will try to next and it will hang with the message "Waiting for gdb to get ready" or ...
0
votes
2answers
272 views

Run a script using DBX

I have a script like this script = GF1_dd_Daemon_Sh PROCESS_NAME=RG INSTANCE=RG PART_ID=1 Inside this there is an executable which is called. When I run this script(#!/bin/ksh ) it creates a core ...
0
votes
1answer
290 views

DBX core file truncated?

I'm using the latest version of dbxtool (Solaris Studio ) on RHEL6.1. I'm working through the tutorial example here using their example code, but when trying to run dbxtool on the core file ...
3
votes
1answer
186 views

Generate a coredump from crashed process attached to ddd/dbx

I'm running dbx in ddd on Solaris. The attached process has crashed and I can examine the stack in the debugger. I want to save this core dump to disk for later. Google shows me several ways to ...
1
vote
1answer
125 views

Where is the documentation for writing Eclipse toolchain plugins?

We're running Solaris 2.10 and using the native Solaris build tools (CC & dbx), for which there is no support in Eclipse 8. I up to writing the plugins to support these tools, but I'm having a ...
3
votes
1answer
599 views

Connecting to MySQL via SSL, using DBExpress

I want to connect to a MySQL server via SSL. More specifically, I want to do that with DbExpress. I've used SSL to MySQL via ZeosLib in the past. That worked great, but Zeos doesn't let me run stored ...
0
votes
2answers
426 views

Problems with using free DBX driver in conjunction with TSQLConnection

I've downloaded free DBX driver from here. I am trying to make it work since two days now, without success. Here is the snapshot of my code: unit uMainForm; interface uses Windows, Messages, ...
1
vote
2answers
268 views

Dumping structure using dbx

I'm debugging my C program using dbx on Solaris, and I'd like to be able to see the contents of a data structure. It's a local data structure in the function that's in scope, so typing "dump" shows a ...
3
votes
1answer
297 views

start gvim without it taking focus from the terminal that started it

I would really like to find a way to start gvim without the terminal losing focus. I found a way to use gvim to display code when debugging in dbx. Gvim as dbx frontend This works great but it ...
1
vote
1answer
134 views

Open a DBX and BAT Outlook Files

Hi guys I need to read some email from outlook in a C++ program, after that based on the content of email, I'll decide to reply or not. I suppose I need to open Dbx outlook files, but how? thx
0
votes
2answers
576 views

debugging with dbx an checking memory leaks with rtcaudit.so

i saw this page and found that we can check memory leaks of a program using dbx. i never practically did it but it seems a good toll for checking the memory leaks. i used to work on HPUX and IBM AIX ...
1
vote
2answers
10k views

How do you examine core files in dbx?

I'm working on AIX and have a process that keeps crashing. I've never examined core files, and would like some guidance if possible. I'm using dbx. How can I (a) make sure the core file is going ...
0
votes
1answer
165 views

In DBX i am not able to step into a particular function?

In dbx i have a put a break on a particular function using stop.Like stop function. But it is not stopping there instead when i try to step in using step command I get this error after line 17745: ...
6
votes
3answers
737 views

Memory leak problem with DBExpress

I've a weird problem with my application, its memory usage goes up a few hundred megabytes at once every now and then and eventually the application freezes. The application is written with Delphi, it ...
6
votes
3answers
327 views

C/C++ Question about trace-programming techniques

I have the following question and from a systems perspective want to know how to achieve this easily and efficiently. Given a task 'abc' that has been built with debug information and a global ...
2
votes
1answer
595 views

Detect memory leaks in dbx with new and delete operators

I'm very interested in using Sun Studio to detect memory leaks in C++ applications with dbx debugger but I think this debugger only shows memory leaks produced by malloc/realloc and free; I'm not sure ...
0
votes
1answer
320 views

redirecting output of 'where' in dbx

I'm trying to get the call stacks leading to a function, func, each time it gets invoked in my executable, and I don't mind if the way to get this is slow or inefficient, so long as it's automated ...
0
votes
1answer
340 views

How do you print C dynamic array contents from dbx?

How do you print C dynamic array contents from dbx? i tried print aj[2..10:1] but it didnt work

1 2