NaviServer - programmable web server
4.99  5.0

[ Main Table Of Contents | Table Of Contents | Keyword Index ]

c-driverdb(n) 4.99.30 manual "NaviServer Manual"

Name

c-driverdb - NaviServer Database Driver Development Guide

Table Of Contents

Description

Introduction

A database driver is a module that interfaces between the NaviServer database-independent nsdb API and the API of a particular DBMS. A database driver provides implementations of a standard set of functions for doing such things as opening connections to the database, sending SQL statements, returning results to a standard form, and closing connections. NaviServer takes care of managing collections of open database connections called database pools.

This manual page is kept of as a reference. Part of this is outdated.

Database driver modules look much like ordinary NaviServer modules but are loaded differently. Instead of being listed with other modules in the ns/server/server-name/modules section of the configuration file, a database driver is listed in the ns/db/drivers section -- a database driver is not tied to a particular virtual server. The database driver initialization function must call Ns_DbRegisterDriver() with an array of pointers to functions. These functions are then later used by NaviServer to perform database operations. The virtual server initialization function is called each time nsdb is loaded into a virtual server. The server initialization function (Ns_dbms-nameServerInit) adds the Tcl command Ns_dbms-name to the server's Tcl interpreters. The Ns_dbms-name command can then be used to fetch driver-specific information about an active connection.

NOTE: The above naming scheme is simply based on convention. It is not enforced, and can be changed at the programmer's discretion.

Internal vs. External Database Drivers

Before developing a database driver, you need to decide whether the driver will be internal or external:

While an internal driver can be faster and can use less resources than an external driver, there are several reasons to develop an external driver:

The Internal Driver API

The set of function points that a database driver implements and what NaviServer expects is as follows:

  1. Name

  2. Database type

  3. Server initialization

  4. Open a database connection

  5. Close a database connection

  6. Get row from table

  7. Flush

  8. Cancel a database connection

  9. Get information about a table

  10. Get list of tables

  11. Best row identifier (identifies each row uniquely)

  12. Execute SQL query

  13. Optional: Reset a database handle when it gets checked back into the pool.

The database driver's job is to make the appropriate DBMS-specific function calls that will implement these functions. The driver must provide an implementation of the function NsDbDriverInit(); This function is executed once, when the server starts up. The most important thing it does is call Ns_DbRegisterDriver() with an array of all the functions implemented by the driver. Here's an example from the PostgreSQL driver (nsdbpg, simplified):

 static Ns_DbProcPgProcs = {
    {DbFn_DbType,       (ns_funcptr_t)DbType},
    {DbFn_Name,         (ns_funcptr_t)DbType},
    {DbFn_OpenDb,       (ns_funcptr_t)OpenDb},
    {DbFn_CloseDb,      (ns_funcptr_t)CloseDb},
    {DbFn_BindRow,      (ns_funcptr_t)BindRow},
    {DbFn_Exec,         (ns_funcptr_t)Exec},
    {DbFn_GetRow,       (ns_funcptr_t)GetRow},
    {DbFn_GetRowCount,  (ns_funcptr_t)GetRowCount},
    {DbFn_Flush,        (ns_funcptr_t)Flush},
    {DbFn_Cancel,       (ns_funcptr_t)Flush},
    {DbFn_ResetHandle,  (ns_funcptr_t)ResetHandle},
    {DbFn_ServerInit,   (ns_funcptr_t)Ns_PgServerInit},
    {DbFn_End, NULL}
 };
 
 NS_EXPORT Ns_ReturnCode
 Ns_DbDriverInit(const char *driver, const char *configPath)
 {
    Ns_ReturnCode status;
    /*
     * Register the PostgreSQL driver functions with nsdb.
     * Nsdb will later call the Ns_PgServerInit() function
     * for each virtual server which utilizes nsdb.
     */
    status = Ns_DbRegisterDriver(driver, &procs[0]);
    if (status) != NS_OK) {
        Ns_Log(Error, "Ns_DbDriverInit(%s):  Could not register the %s driver.",
            driver, pgDbName);
        return NS_ERROR;
    }
    Ns_Log(Notice, "%s loaded.", pgDbName);
    return status;
 }

In more detail, here's what each of these functions needs to do:

  1. const char *Ns_dbms-nameName(Ns_DbHandle *handle);

    This function returns the string which identifies the database driver.

  2. const char *Ns_dbms-nameDbType(Ns_DbHandle *handle);

    This function returns the string which identifies the database type. Usually, it is the same as the name of the driver.

  3. Ns_ReturnCode Ns_dbms-nameServerInit(const char *hServer, const char *hModule, const char *driver);

    Ns_dbms-nameServerInit calls another function named Ns_dbms_nameInterpInit which is responsible for adding the command Ns_dbms-name to a single Tcl interpreter. Ns_dbms-nameServerInit calls Ns_dbms-nameInterpInit for each interpreter in the virtual server that is being initialized.

  4. Ns_ReturnCode Ns_dbms-nameOpenDb(Ns_DbHandle *dbh);

    This function takes a pointer (typically known as the "handle") to the Ns_DbHandle structure as an argument. The handle contains information such as the driver name, name of the datasource, username and password, name of the database pool and some other parameters. The structure is as follows:

     typedef struct Ns_DbHandle {
        const char *driver;
        const char *datasource;
        const char *user;
        const char *password;
        void       *connection;
        const char *poolname; /* poolname associated for this handle */
        bool        connected;
        bool        verbose; /* Was previously used for general verbosity, then unused, now verboseError */
        Ns_Set     *row;     /* used for row data during binds, getrows, etc.*/
                             /* used by internal Db API */
        char        cExceptionCode[6];
        Ns_DString  dsExceptionMsg;
        void       *context;
        void       *statement; /* used by ODBC driver statements */
        bool        fetchingRows;
     } Ns_DbHandle;
    

    The statement field is used as a pointer to your allocated statement handles (hstmt). It can be used to pass a DbHandle with a pointer to the statement handle to other driver functions to invoke cancels (e.g., SQLCancel()) and error reporting (e.g., SQLError()).

    This function takes the information contained in the handle and opens a connection to the database named in the handle along with the username and password. If a connection is successfully established, then OpenDb performs some database specific functions, and returns NS_OK. If it is unable to establish a connection to the database server, or if it is unable to perform the required database specific functions, it returns NS_ERROR. The status is logged by using the Ns_Log function.

    Note: For more information about database-specific functions, the documentation about its API should be consulted.

  5. Ns_ReturnCode Ns_dbms-nameCloseDb(Ns_DbHandle *handle);

    This function takes a handle as an argument and terminates the connection to the database server. It also cleans up the handle parameters. It returns with either NS_OK or NS_ERROR (in case CloseDb fails to close the connection).

  6. int Ns_dbms-nameGetRow(const Ns_DbHandle *handle, const Ns_Set *row);

    The results of a SELECT query are usually a number of rows. Ns_dbms-nameGetRow is responsible to obtain these rows from the database and return them to NaviServer for display/manipulation. This function typically does the following:

    checks if it is being called from within a fetch row loop checks if the end of data is reached, and if so, stops returns the next row in the result set

    You can return the values something like this:

    Ns_SetPutValue(row, (int) i, colval);

    This function should return either NS_ERROR or NS_OK.

  7. Ns_ReturnCode Ns_dbms-nameFlush(Ns_DbHandle *handle);

    This function flushes any rows which are waiting to be retrieved after a SELECT is executed. The rows are irretrievably lost. The fields for columns, tuples, and current tuple in the connection structure are reset to 0. The result field is reset to NULL. This function should return either NS_ERROR or NS_OK.

  8. Ns_ReturnCode Ns_dbms-nameCancel(Ns_DbHandle *handle);

    A call to this function results in cancelling that particular database connection.

  9. int Ns_dbms-nameExec(Ns_DbHandle *handle, const char *sql);

    This function takes an SQL command and sends it to the DBMS. If the command is returns rows, the function should return NS_ROWS. If the command was DDL or DML, then the function should return NS_DML. And of course if there is an error executing the SQL, the function should return NS_ERROR. It is recommended that you define one Ns_dbms-nameExec procedure that handles both queries that return rows and those that do not. When Ns_DbExec is invoked in NaviServer, it calls whatever Ns_DbExec function is defined. When Ns_DbSelect is invoked, it tries Ns_DbExec first and then Ns_DbSelect.

  10. Ns_ReturnCode Ns_dbms-nameResetHandle(Ns_DbHandle *handle);

    This function will be called with the database handle every time one is returned to the database pool. You can use this to normalize its state for the next use; for example always setting the handle to autocommit mode and aborting any uncommitted transactions.

The External Driver API

To build an external driver, you need to provide implementations for several functions, and then link your code with the provided 'nspdmain' program, found in the nspd.a library. The resulting "database proxy daemon" is contacted by the server's "external" driver (the client in the following descriptions) for all database activities. The 'nspdmain' program handles all communication with the server's 'external' driver, calling your routines database-specific functions. Note that there is a single database proxy daemon associated with each database connection, so all of the state for each connection is encapsulated here. Database connections are managed efficiently by the server's database pool mechanism.

The next section summarizes the External Driver Proxy Daemon functions. The reference section at the end of this appendix describes each function in detail and gives a pseudo-code implementation. Each implementation of a function may be a different for each dbms-specification. Consult your database client library documentation and the freely distributed NaviServer examples of the Sybase Proxy daemons for more information and dbms-specific examples.

Functions to be Implemented

The set of functions that need to be implemented are:

  1. void *Ns_PdDbInit (void)

    This function is called once from the 'nspdmain' when the database driver is initialized at process startup. It normally allocates and returns a dbms-specific structure to be passed to all other routines. It also calls any dbms-specific initialization routines. This function does not open a connection to the database.

  2. void Ns_PdDbCleanup(void *handle)

    This function is called once from the 'nspdmain' when the database driver is initialized at process startup. It performs cleanup associated with process shutdown and frees the database-specific handle.

  3. void Ns_PdDbOpen(void *handle, char *openArgs)

    This function opens a connection to the database based on the openArgs passed in. The handle passed in is the handle that was returned by Ns_PdDbInit, and will usually be cast to some driver-specific data structure. If the open operation is successful, this function should call Ns_PdSendString with OK_STATUS. On failure, the function should use Ns_PdSendString to return an error string.

  4. void Ns_PdDbClose(void *handle)

    This function closes the database. It should not free the database handle. If the close operation is successful, this function should call Ns_PdSendString with OK_STATUS. On failure, the function should use Ns_PdSendString to return an error string.

  5. void Ns_PdDbExec(void *handle, const char *sql)

    This function executes a SQL query. If the SQL is executed successfully, this function should call Ns_PdSendString with OK_STATUS followed by either Ns_PdSendString(EXEC_RET_ROWS) or Ns_PdSendString(EXEC_RET_DML), depending on whether the SQL returned rows or was a DML statement. On failure, the function should use Ns_PdSendException to return an error.

  6. void Ns_PdDbFlush(void *handle)

    Flushes any pending data. Usually, this function will call Ns_PdDbCancel or something similar along with any other database specific clean-up routines. If the flush operation is successful, this function should call Ns_PdSendString with an OK_STATUS. On failure, the function should use Ns_PdSendString to return an error string.

  7. void Ns_PdDbCancel(void *handle)

    This function cancels the current database operation. If the cancel operation was successful, this function should call Ns_PdSendString with OK_STATUS. On failure, the function should use Ns_PdSendString to return an error string.

  8. void Ns_PdDbBindRow (void *handle)

    This function should retrieve from the DBMS a list of column names of rows and return this data to the client. If the bind-row operation is successful, this function should call Ns_PdSendString with an OK_STATUS. On failure this function should return an exception code with Ns_PdSendException.

  9. void Ns_PdDbGetRow(void *handle, char *columnCount)

    This function should retrieve from the DBMS the row associated with the columnCount column and send this data to the client. If the get-row operation was successful, this function should call Ns_PdSendString with an OK_STATUS and then send the data with Ns_PdDbSendData. On failure, the function should use Ns_PdSendException to return an error.

  10. void Ns_PdDbTableList (void *handle, char *includeSystem)

    This function should retrieve the list of table names from the database associated with the handle and send this data to the client. The includeSystem parameter indicates whether to include system tables with this list. The function should implement the following protocol:

    If the initial SQL query returns a successful status of DB_ROWS when generating the table names, then this function should:

    1. Call Ns_PdSendString with an OK_STATUS.

    2. Call Ns_PdSendString with a size of the item (table name).

    3. Call Ns_PdSendData to send the actual data associated with the name and to signal the end of data.

    4. If an exception occurs during the processing of the table data, then this function should send the partial data to the client and indicate an error with Ns_PdDbLog.

    If an exception is raised before successfully retrieving some of the table data, then this function should call Ns_PdSendException to return an error.

  11. void Ns_PdDbGetTableInfo(void *handle, char *tableName)

    This function should retrieve the system catalog information (columns, types, etc.) about a table and send this to the client.

    If the initial SQL select query returns a successful status of DB_ROWS, then this function should:

    1. Call Ns_PdSendString with an OK_STATUS.

    2. Call Ns_PdSendRowInfo to send to the client the column info.

    3. Call Ns_PdSendRowInfo to send to the client subsequent row info.

    4. Call Ns_PdSendData to indicate to the client that END_DATA has been reached.

    5. If an exception occurs during the processing of the row info, then this function should send the partial data to the client and indicate an error with Ns_PdDbLog.

    If an exception is raised before successfully retrieving some of the row info, then this function should call Ns_PdSendException to return an error.

  12. void Ns_PdDbBestRowId(void *handle, char *tableName)

    This function retrieves the primary key of a table from the database and sends this to the client. If a table has a primary key, NaviServer can perform row updates and deletes. If the best-row-id operation is successful, this function should call Ns_PdSendString with an OK_STATUS. If a best-row-id is found then call Ns_PdSendString with the column name; otherwise, call Ns_PdSendString with NO_BESTROWID. On failure this function should return an exception code with Ns_PdSendException.

  13. void Ns_PdDbIndentify(void *handle)

    This function sends a string identifying the proxy daemon name and version with Ns_PdSendString.

  14. void Ns_PdDbGetTypes(void *handle)

    This function sends a string of the data types for the database with Ns_PdSendString.

  15. void Ns_PdDbResultId(void *handle)

    This function sends to the client with Ns_PdSendString the id of the last object affected by an exec command or a null terminated string.

  16. void Ns_PdDbResultRows(void *handle)

    This function sends to the client with Ns_PdSendString the number of rows affected by last exec command.

  17. void Ns_PdDbSetMaxRows(void *handle, char *maxRows)

    This function sets the max rows for the database. If this function is successful or the SQL command is undefined for your specific DBMS, it should call Ns_PdSendString with an OK_STATUS. If set-max-rows is defined for your specific DBMS and there is an exception raised, then this function should send an exception code with Ns_PdSendException.

  18. void Ns_PdDbSpExec(void *handle)

    This function executes a stored procedure that has been initialized with Ns_PdDbSpStart and Ns_PdDbSpSetParam.

  19. void Ns_PdDbSpGetParams(void *handle)

    This function returns output parameters from a previously executed stored procedure.

  20. void Ns_PdDbSpReturnCode (void *handle)

    This function gets the return code from a previously executed stored procedure.

  21. void Ns_PdDbSpSetParam (void *handle, char *args)

    This function sets parameters in a stored procedure before executing it.

  22. void Ns_PdDbSpStart(void *handle, char *procname)

    This function begins the definition of a stored procedure.

Utility Functions

In implementing the above functions, you will need to call some of the various utility functions described below. When using these functions, do not pass a parameter of NULL for string values. If you do, an error message is printed to the syslog and the function returns.

  1. void Ns_PdLog(Ns_PdLogMsgType errtype, char *fmt, ...)

    The Ns_PdLog function sends a formatted messages to the client. Allowable values for the log type are the following with a default type of Error: Notice, Trace, Error.

  2. void Ns_PdSendString(char *string)

    This function sends a string to the client.

  3. void Ns_PdSendException(char *code, char *msg)

    The command sends an exception code and an exception message to the client.

  4. Ns_PdParseOpenArgs(char *openargs, char **datasource, char **user, char **password, char **param)

    This function parses the datasource, user, password, and param parameters leaving missing elements as NULL. This function is normally called from within Ns_PdDbOpen.

  5. void Ns_PdSendRowInfo(Ns_PdRowInfo * rowInfo)

    This function sends a row encapsulated in an Ns_PdRowInfo structure to the client.

  6. void Ns_PdSendData(char *data, int len)

    This function sends data of length len to the client. You indicate that you are finished sending data by calling this function with END_DATA.

  7. void Ns_PdFreeRowInfo(Ns_PdRowInfo * rowInfo, int fFreeData)

    This function frees an ns_PdRowInfo data structure. If fFreeData is a nonzero value, then this function frees the data associated with the ns_PdRowData structure (encapsulated in Ns_PdRowInfo) as well.

Constants

The following constants are used in the example drivers:

#define EXCEPTION_CODE_MAX 32

#define EXCEPTION_MSG_MAX 4096

These constants are used for the buffer sizes for the database error/exception code and error/exception message, respectively. The given buffer size must include a terminating null byte. In other words, you can have an exception message of up to 4095 bytes, reserving the last byte for a NUL byte.