File: main.c

package info (click to toggle)
lua-dbi 0.7.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 448 kB
  • sloc: ansic: 3,946; sql: 291; makefile: 129
file content (15 lines) | stat: -rw-r--r-- 255 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_dbd_oracle(lua_State *L) {
	dbd_oracle_statement(L);
	dbd_oracle_connection(L);

	return 1;
}