Skip to content
Permalink
Browse files
Update and rename studentdeatils inserted into database to insert_db.h
  • Loading branch information
mehrar committed Oct 15, 2021
1 parent 6f8c975 commit 155ae821fb0036eb1f221b60605c16d301f710be
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 29 deletions.
@@ -0,0 +1,30 @@
#ifndef INSERT_DB_H
#define INSERT_DB_H
#include <iostream>
#include "select_db.h"
#include "libsqlite.hpp"
using namespace std;

int insert_db(int studentID, string name, string surname, string username, string email, string password)
{/*insert the student details into database*/
try{
sqlite3::sqlite db("School.db");
auto cur = db.get_statement();
cur->set_sql( "INSERT INTO Studentdetails VALUES(?,?,?,?,?,?,?);" );
cur->prepare();
cur->bind( 1, studentID );
cur->bind( 2, name );
cur->bind( 3, surname );
cur->bind( 4, username );
cur->bind( 5, email );
cur->bind( 6, password );
cur->step();
}
catch( sqlite::exception e )
{
cerr << e.what() << endl;
return 1;
}
return 0;
}
#endif

This file was deleted.

0 comments on commit 155ae82

Please sign in to comment.