home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1994 Brad Eacker,
- * (Music, Intuition, Software, and Computers)
- * All Rights Reserved
- */
-
- #include <stdio.h>
- #include "sql.h"
-
- sql_cre(t_name, c_list)
- list_elem_t *t_name, *c_list;
- {
- int retval = 0;
-
- printf("creating table %s\n", get_list_name(t_name));
- scan_elems(c_list);
- printf("\n");
-
- return retval;
- }
-
- sql_drop(t_name, c_or_r)
- list_elem_t *t_name;
- int c_or_r;
- {
- int retval = 0;
-
- printf("dropping table %s\n", get_list_name(t_name));
- printf("\n");
-
- return retval;
- }
-