Does anyone know how to open a sqlite database in windows mobile 6.5(emulator)? I have tried to use the following code to open it, but it has no success. It says "Unable to open the database".
private SQLiteConnection con;
public void OpenDB(){
con = new SQLiteConnection(@"Data Source=C:\Documents and Settings................\Data\iPhysioMobile");
con.open();
}
I have used to use the full path of the database file. Does anyone know why it occurs? or any other suggestions?
Regards,
SW Lau