dbd/mysql/main.c

Fri, 19 Dec 2008 09:17:16 +0000

author
nrich@ii.net
date
Fri, 19 Dec 2008 09:17:16 +0000
changeset 21
7956401a0c5e
parent 2
c4f02fc67e5a
child 33
6c64c45e7d8f
permissions
-rw-r--r--

Added the statement:affected() and statement:rowcount() methods.

#include "dbd_mysql.h"

int dbd_mysql_connection(lua_State *L);
int dbd_mysql_statement(lua_State *L);

/*
 * libabry entry point
 */
int luaopen_dbdmysql(lua_State *L) {
    dbd_mysql_connection(L);
    dbd_mysql_statement(L);

    return 1;
}

mercurial