db-lib
for self-help.
More...Defines | |
#define | DBSETLLABELED(x, y) dbsetlbool((x), (y), DBSETLABELED) |
Alternative way to set login packet fields. | |
#define | DBSETLVERSION(login, version) dbsetlversion((login), (version)) |
maps to the Microsoft (lower-case) function. | |
Functions | |
int | _dblib_client_msg (DBPROCESS *dbproc, int dberr, int severity, const char *dberrstr) |
Pass a server-generated error message to the client's installed handler. | |
RETCODE | dbcmdrow (DBPROCESS *dbproc) |
See if the current command can return rows. | |
DBINT | dbcount (DBPROCESS *dbproc) |
Get count of rows processed. | |
int | dbcurcmd (DBPROCESS *dbproc) |
Get number of the row just returned. | |
DBINT | dbcurrow (DBPROCESS *dbproc) |
Get number of the row currently being read. | |
DBBOOL | dbdead (DBPROCESS *dbproc) |
Check if dbproc is an ex-parrot. | |
DBINT | dbfirstrow (DBPROCESS *dbproc) |
Get number of the first row in the row buffer. | |
int | dbiordesc (DBPROCESS *dbproc) |
Get file descriptor of the socket used by a DBPROCESS to read data coming from the server. (!). | |
int | dbiowdesc (DBPROCESS *dbproc) |
Get file descriptor of the socket used by a DBPROCESS to write data coming to the server. (!). | |
DBINT | dblastrow (DBPROCESS *dbproc) |
Get number of the last row in the row buffer. | |
int | dbperror (DBPROCESS *dbproc, DBINT msgno, int errnum) |
Call client-installed error handler. | |
RETCODE | dbrows (DBPROCESS *dbproc) |
Indicate whether a query returned rows. | |
STATUS | dbrowtype (DBPROCESS *dbproc) |
Get returned row's type. | |
void | dbsetavail (DBPROCESS *dbproc) |
Mark a DBPROCESS as "available". | |
int | dbtds (DBPROCESS *dbproc) |
Get the TDS version in use for dbproc. | |
DBPROCESS * | tdsdbopen (LOGINREC *login, char *server, int msdblib) |
Form a connection with the server. |
db-lib
for self-help.
These functions are of interest only to people hacking on the FreeTDS db-lib implementation.
|
Alternative way to set login packet fields.
|
|
maps to the Microsoft (lower-case) function.
|
|
Pass a server-generated error message to the client's installed handler.
For internal use only.
|
|
See if the current command can return rows.
For internal use only.
|
|
Get count of rows processed.
For internal use only.
|
|
Get number of the row just returned.
For internal use only.
|
|
Get number of the row currently being read.
For internal use only.
|
|
Check if dbproc is an ex-parrot.
For internal use only.
|
|
Get number of the first row in the row buffer.
For internal use only.
|
|
Get file descriptor of the socket used by a
For internal use only.
|
|
Get file descriptor of the socket used by a
For internal use only.
|
|
Get number of the last row in the row buffer.
For internal use only.
|
|
Call client-installed error handler.
For internal use only.
Instead of sprinkling error text all over db-lib, we consolidate it here, where it can be translated (one day), and where it can be mapped to the TDS error number. The libraries don't use consistent error numbers or messages, so when libtds has to emit an error message, it can't include the text. It can pass its error number to a client-library function, which will interpret it, add the text, call the application's installed handler (if any) and return the handler's return code back to the caller. The call stack may look something like this:
The error handling in this case is unambiguous: the caller invokes this function, the client's handler returns its instruction, which the caller receives. Quite often the caller will get INT_CANCEL, in which case it should put its house in order and return FAIL. The call stack may otherwise look something like this:
Here libtds invokes the client's handler. Because different client libraries specify their handler semantics differently, and because libtds doesn't know which client library is in charge of any given connection, it cannot interpret the raw return code. Similarly, the libtds error message number will not be in the db-lib msgno list. For these reasons, libtds calls _dblib_handle_err_message which translates between libtds and db-lib semantics.
|
|
Indicate whether a query returned rows.
For internal use only.
|
|
Get returned row's type.
For internal use only.
|
|
Mark a
For internal use only.
|
|
Get the TDS version in use for dbproc.
For internal use only.
|
|
Form a connection with the server.
For internal use only.
Called by the
|