dbd/postgresql/main.c

Fri, 18 Sep 2009 12:40:53 +0000

author
nrich@ii.net
date
Fri, 18 Sep 2009 12:40:53 +0000
changeset 33
6c64c45e7d8f
parent 2
c4f02fc67e5a
permissions
-rw-r--r--

* Fix MySQL date/time types
* Add VC++ build projects
* Misc fixes for Windows DLL building

#include "dbd_postgresql.h"

int dbd_postgresql_connection(lua_State *L);
int dbd_postgresql_statement(lua_State *L);

/*
 * library entry point
 */
LUA_EXPORT int luaopen_dbdpostgresql(lua_State *L) {
    dbd_postgresql_connection(L);
    dbd_postgresql_statement(L); 

    return 1;
}

mercurial