home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume43 / dbf / part02 / sql_cre.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-27  |  515 b   |  33 lines

  1. /*
  2.  * Copyright (c) 1994 Brad Eacker,
  3.  *              (Music, Intuition, Software, and Computers)
  4.  * All Rights Reserved
  5.  */
  6.  
  7. #include <stdio.h>
  8. #include "sql.h"
  9.  
  10. sql_cre(t_name, c_list)
  11. list_elem_t *t_name, *c_list;
  12. {
  13.     int    retval = 0;
  14.  
  15.     printf("creating table %s\n", get_list_name(t_name));
  16.     scan_elems(c_list);
  17.     printf("\n");
  18.  
  19.     return retval;
  20. }
  21.  
  22. sql_drop(t_name, c_or_r)
  23. list_elem_t *t_name;
  24. int c_or_r;
  25. {
  26.     int    retval = 0;
  27.  
  28.     printf("dropping table %s\n", get_list_name(t_name));
  29.     printf("\n");
  30.  
  31.     return retval;
  32. }
  33.