sqlfun/sql-parser.h
Jeff Garzik 8948cfcb31 emit() sweep: basics of CREATE TABLE now converted to API form
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
2009-11-08 19:32:25 -05:00

15 lines
546 B
C

#ifndef __SQL_PARSER_H__
#define __SQL_PARSER_H__
extern void sqlp_create_db(int if_n_exists, const char *name);
extern void sqlp_create_tbl(int temp, int if_n_exists, int n_cols,
const char *db_name, const char *name);
extern void sqlp_def_col(int flags, const char *name);
extern void sqlp_drop_db(int if_exists, const char *name);
extern void sqlp_drop_table(int temp, int if_exists, int n_tables);
extern void sqlp_start_col(void);
extern void sqlp_stmt(void);
extern void sqlp_table(const char *name);
#endif /* __SQL_PARSER_H__ */