소스 검색

check_database() for initalization

  We now will create table if it does not exist.
david 4 년 전
부모
커밋
28435f2d57
1개의 변경된 파일30개의 추가작업 그리고 1개의 파일을 삭제
  1. 30 1
      main.c

+ 30 - 1
main.c

@@ -306,9 +306,10 @@ int locate_player(char name[]) {
   sqlite3_bind_text(stmt, 1, name, strlen(name), SQLITE_STATIC);
   rc = sqlite3_step(stmt);
   if (rc == SQLITE_ROW) {
-    //dolog("User=%s uid=%d", name, sqlite3_column_int(stmt, 0));
+    // Return user id
     result = sqlite3_column_int(stmt, 0);
   } else {
+    // User not found
     dolog("W: Unable to locate user=%s", name);
     result = 0;
   } // Clean Up, return results
@@ -317,6 +318,33 @@ int locate_player(char name[]) {
   return result;
 }
 
+void check_database() {
+  // If the table users does not exist make it.
+  sqlite3 *db;
+  sqlite3_stmt *stmt;
+  char sqlbuffer[256];
+  int rc = sqlite3_open("spaceconstruct.db3", &db);
+  if(rc) {
+    dolog("C: Failed opening database %s (%d)", sqlite3_errmsg(db), rc);
+    sqlite3_close(db);
+    od_exit(-1, FALSE);
+  }
+  sqlite3_busy_timeout(db, 5000);
+  strcpy(sqlbuffer, "SELCECT COUNT(*) FROM user;");
+  sqlite3_prepare_v2(db, sqlbuffer, strlen(sqlbuffer) + 1, &stmt, NULL);
+  rc = sqlite3_step(stmt);
+  if(rc == SQLITE_ROW) {
+    // Good
+  } else {
+    // Bad, Create table
+    char *errmsg;
+    rc = sqlite3_exec(db, "CREATE TABLE IF NOT EXISTS \"user\" (`uid`	INTEGER PRIMARY KEY AUTOINCREMENT,`nick`	TEXT,`real`	TEXT,`experience`	INTEGER,`metal`	INTEGER,`fuel`	INTEGER,`guns`	INTEGER,`armors`	INTEGER,`shields`	INTEGER,`armorpoints`	INTEGER,`shieldpoints`	INTEGER,`hitpoints`	INTEGER,`shieldsup`	INTEGER,`laston`	INTEGER);", NULL, NULL, &errmsg);
+    dolog("W: Users table did not exist created with %d", rc);
+  }
+  sqlite3_finalize(stmt);
+  sqlite3_close(db);
+}
+
 user_inf load_player(int uuid) {
   // Returns a player Structure from database
   sqlite3 *db;
@@ -1691,6 +1719,7 @@ int main(int argc, char *argv[]) {
   // Initiate Door
   od_init();
   od_clr_scr();
+  check_database(); // Ensure the users table exists.
 
   // Debug System
   if (debug) {