dbd/postgresql/main.c

Sat, 06 Dec 2008 07:35:31 +0000

author
nrich@ii.net
date
Sat, 06 Dec 2008 07:35:31 +0000
changeset 18
b705ba343e94
parent 2
c4f02fc67e5a
child 33
6c64c45e7d8f
permissions
-rw-r--r--

Misc changes.

#include "dbd_postgresql.h"

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

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

    return 1;
}

mercurial