dbd/postgresql/main.c

Sun, 23 Nov 2008 01:29:09 +0000

author
nrich@ii.net
date
Sun, 23 Nov 2008 01:29:09 +0000
changeset 1
408291a6eb3e
child 2
c4f02fc67e5a
permissions
-rw-r--r--

Initial import.

#include "dbd_postgresql.h"

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

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

    return 1;
}

mercurial