File: main.c

package info (click to toggle)
lua-dbi 0.5%2Bsvn78-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 360 kB
  • sloc: ansic: 2,908; makefile: 77
file content (15 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "dbd_oracle.h"

int dbd_oracle_connection(lua_State *L);
int dbd_oracle_statement(lua_State *L);

/* 
 * library entry point
 */
LUA_EXPORT int luaopen_dbdoracle(lua_State *L) {
    dbd_oracle_connection(L);
    dbd_oracle_statement(L); 

    return 1;
}