Use DROP TABLE students;
That will permanently delete the table students. This is irreversible and cannot be undone. On Tue, Aug 14, 2012 at 4:06 AM, Dan Kennedy <[email protected]> wrote: > On 08/14/2012 02:04 PM, daedae11 wrote: > >> Following is my program: >> rc = sqlite3_exec(db, "TRUNCATE TABLE students;", NULL, NULL, &errMsg); >> > > DELETE FROM students; > > > ______________________________**_________________ > sqlite-users mailing list > [email protected] > http://sqlite.org:8080/cgi-**bin/mailman/listinfo/sqlite-**users<http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users> > _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

