Thread: pgsql/src/interfaces/odbc bind.c columninfo.c ...
CVSROOT: /home/projects/pgsql/cvsroot Module name: pgsql Changes by: inoue@hub.org 01/08/18 00:30:47 Modified files: src/interfaces/odbc: bind.c columninfo.c connection.c connection.h convert.c dlg_specific.c drvconn.c environ.c execute.c info.c options.c parse.c pgtypes.c psqlodbc.def psqlodbc.h qresult.c qresult.h results.c statement.c statement.h win32.mak Log message: 1) Change all internal SQL function calls from SQLxxxx() to PGAPI_xxxx(). 2) Handle an escaped date/time format as a parameter. 3) Improve the tuple allocation a little. 4) The preparation of ODBC 3.0 a little. 5) Updatable cursors(may be deprecated before long).
Hiroshi Inoue writes: > Log message: > 1) Change all internal SQL function calls from > SQLxxxx() to PGAPI_xxxx(). Does this mean we don't have to link with -Bsymbolic anymore? -- Peter Eisentraut peter_e@gmx.net http://funkturm.homeip.net/~peter
Peter Eisentraut wrote: > > Hiroshi Inoue writes: > > > Log message: > > 1) Change all internal SQL function calls from > > SQLxxxx() to PGAPI_xxxx(). > > Does this mean we don't have to link with -Bsymbolic anymore? Yes unless I missed SQLxxxx()s somewhere. However it's not my purpose. regards, Hiroshi Inoue