Skip to content
Permalink
6f8c975489
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
49 lines (37 sloc) 1.11 KB
#ifndef CREATE1_DB_H
#define CREATE1_DB_H
#include <iostream>
#include <string>
#include <sqlite3.h>
int callback(void *NotUsed, int len, char **value, char **column){
for(int i = 0; i < len; i++) {
cout << column[i] << ": " << value[i] << endl;
}
return 0;
}
int create1_db() {/* creating a timetable for the student*/
sqlite3 *db;
char *column = 0;
int load;
string sql;
load = sqlite3_open("Timetable.db", &db);
if(load){
cout << "DB Error: " << sqlite3_errmsg(db) << endl;
sqlite3_close(db);
return(1);
}
sql = "DROP TABLE LESSON;";
load = sqlite3_exec(db, sql.c_str(), callback, 0, &column);
sql = "CREATE TABLE LESSON (" \
"studentID INT NOT NULL," \
"modules STR NOT NULL,"\
"classes STR NOT NULL,"\
"students STR NOT NULL,"\
"lecturers STR NOT NULL,"\
"Timing int NOT NULL,"\
"rooms STR NOT NULL);";
load = sqlite3_exec(db, sql.c_str(), callback, 0, &column);
sqlite3_close(db);
return 0;
}
#endif