Click here to Skip to main content
16,014,637 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
SQLiteConnecton connection = new SQLiteConnecton("Data source=" + dbpath);
Posted
Comments
[no name] 15-Feb-14 0:34am    
what error..??
and post some more code..it's not enough to identify the problem..

1 solution

There is no class I know of called SQLiteConnecton: try this instead:
C#
SQLiteConnection connection = new SQLiteConnection("Data source=" + dbpath);
If that doesn't work, then look at your dbpath and see what it contains, and then post that and the error message so we get some clue as to what is going on! :laugh:
 
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