Is there a SQL command in SQLite (for C#.NET) which performs the equivalent of this?
DELETE * FROM * WHERE id='idnumber'
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, there’s not.
One way is to write a little script to query metadata tables to create another script with a series of individual
deletestatements, one per table.An example could be (assuming every table had an ID column):
This would generate a
deletestatement for each table which you could then capture and run as a script.But it’s generally a good idea for database developers to know the names of their tables 🙂