gdb help

i have created some break points in gdb.

let's say....

b sqlcxt

how can i know the breakpoint name of sqlcxt ???

This sounds very wrong to me somehow.

Oracle sqlcxt is a struct not a function for example. You "br" on lines of code, functions, not data structures. The gdb print command will show the address of a struct:

print [struct variable name]

Or it will show the contents of a struct:

print *[struct variable name]

If sqlctx were a function, say for another type of db, then you could print with the same command

print sqlctx

to get the entry point or address of the function.

show break 

will also list your breakpoints.