Dear all,
As first really thanks for all the helps you are providing.
If possible I have a little question, but please, consider me an absolute beginner.
I'm tryng to develop a little test application for smart device using C# and SQLite.
After the creation of the DB and the related schema, if I debug my application, I will recive the following message:
"Unable to open the database file" as SQLite exception.
The related code is generated automatically from the shema:
public virtual int Fill(Food_Intake_DBDataSet.FoodDataTable dataTable) {
this.Adapter.SelectCommand = this.CommandCollection[0];
if ((this.ClearBeforeFill == true)) {
dataTable.Clear();
}
int returnValue = this.Adapter.Fill(dataTable);
return returnValue;
}