Import ezmlm-idx 0.40
[ezmlm] / sub_std / opensql.c
1 /*$Id: opensql.c,v 1.3 1999/10/12 23:38:36 lindberg Exp $*/
2 /*$Name: ezmlm-idx-040 $*/
3 #include "stralloc.h"
4 #include "strerr.h"
5 #include "errtxt.h"
6 #include "subscribe.h"
7
8 static stralloc myp = {0};
9 static stralloc ers = {0};
10 static stralloc fn = {0};
11 static stralloc ourdb = {0};
12 static char *ourtable = (char *) 0;
13
14 char *opensql(dbname,table)
15 char *dbname; /* database directory */
16 char **table; /* table root_name */
17
18 {
19 return 0;
20 }
21
22 void closesql()
23 /* close connection to SQL server, if open */
24 {
25 return;
26 }
27