diff -r 4ff31a4ea1fb -r 408291a6eb3e dbd/mysql/dbd_mysql.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dbd/mysql/dbd_mysql.h Sun Nov 23 01:29:09 2008 +0000 @@ -0,0 +1,16 @@ +#include +#include + +#define DBD_MYSQL_CONNECTION "DBD.MySQL.Connection" +#define DBD_MYSQL_STATEMENT "DBD.MySQL.Statement" + +typedef struct _connection { + MYSQL *mysql; +} connection_t; + +typedef struct _statement { + MYSQL *mysql; + MYSQL_STMT *stmt; + MYSQL_RES *metadata; +} statement_t; +