Enhancements for getting Access 2000 to work (almost)

Fixes for working with bison
This commit is contained in:
brianb
2001-05-16 00:21:17 +00:00
parent 606887dfbd
commit 3d4bc34b70
24 changed files with 1338 additions and 727 deletions

View File

@@ -17,6 +17,10 @@ typedef struct {
typedef struct {
char *name;
int disp_size;
void *bind_addr; /* if !NULL then cp parameter to here */
int bind_type;
int *bind_len;
int bind_max;
} MdbSQLColumn;
typedef struct {
@@ -29,6 +33,8 @@ typedef struct {
MdbSarg *sarg;
} MdbSQLSarg;
char *g_input_ptr;
#undef YY_INPUT
#define YY_INPUT(b, r, ms) (r = mdb_sql_yyinput(b, ms));

View File

@@ -109,6 +109,8 @@ typedef struct {
char db_passwd[14];
MdbBackend *default_backend;
char *backend_name;
/* offset to row count on data pages...version dependant */
guint16 row_count_offset;
} MdbHandle;
typedef struct {