Beispiel #1
0
/*
 * This is just the main method!
 */
int main(void) {
  printf("\n===============Create Table:\n");
  testCreateTable();

  printf("\n===============testStore\n");
  testStore();

  printf("\n===============testWhereCompare\n");
  testWhereCompare();

  printf("\n===============testRetrieve\n");
  testRetrieve();
  
  printf("\n================testDisplay\n");
  

  printf("\n=================testDropTbl\n");
  testDropTable();
  
  printf("\n=================testDropDB\n");
  testDropDB();

  printf("\n===============testParseGrammer\n");
  testParseGrammer();
  return 0;
}
Beispiel #2
0
/*
 * This is just the main method!
 */
int main(void) {
  printf("===============Create Table:\n");
  testCreateTable();
  printf("===============Example Table:\n");

  printf("\n===============testStore\n");
  testStore();

  printf("\n===============testRetrieve\n");
  testRetrieve();

  printf("\n===============testParseGrammer\n");
  testParseGrammer();
  return 0;
}