C program to drop a database table dynamically in SQLite | C program
Jun 24, 2021
C programming,
326 Views
C program to drop a database table dynamically in SQLite | C program
C program to drop a database table dynamically in SQLite | C program
Prerequisites:
sudo apt install sqlite3
sudo apt install gcc
sudo apt install libsqlite3-dev
In this program, we will drop a database table using source code dynamically in SQLite.
#include <sqlite3.h>
#include <stdio.h>
int main(void)
{
sqlite3* db_ptr;
char* errMesg = 0;
int ret = 0;
ret = sqlite3_open("MyDb.db", &db_ptr);
if (ret != SQLITE_OK) {
printf("Database opening error\n");
}
ret = sqlite3_exec(db_ptr, "drop table IF EXISTS Employee", 0, 0, &errMesg);
if (ret != SQLITE_OK) {
printf("Error in SQL statement: %s\n", errMesg);
sqlite3_free(errMesg);
sqlite3_close(db_ptr);
return 1;
}
printf("Employee table dropped successfully\n");
sqlite3_close(db_ptr);
return 0;
}