コード例 #1
0
ファイル: test.c プロジェクト: SCostello84/cop4710-sequel
/*
 * 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;
}
コード例 #2
0
ファイル: test.c プロジェクト: nickJones67/cop4710-sequel
/*
 * 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;
}