Click here to Skip to main content
15,885,782 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am having error SQLite error no such table: emp while connecting to Sqlite through .Net(C#) application.please suggest me.
Posted
Comments
Ed Nutting 31-Mar-12 9:21am    
One of the poorest and least informative questions I have seen here on CP. Please update this.
OriginalGriff 31-Mar-12 9:44am    
This is not a good question - we cannot work out from that little what you are trying to do.
Remember that we can't see your screen, access your HDD, or read your mind.
Use the "Improve question" widget to edit your question and provide better information.

1 solution

You are obviously trying to use a table in a SQL statement that does not exist yet. This can have two causes:

  1. You have misspelled the table name and wanted to adress a table with a similar name.
  2. The table has not yet been created. You need to use the correct SQL commands to achieve that: http://www.sqlite.org/lang.html


Regards

Manfred
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900