I have an Azure cloud app and I'm trying to store user uploaded data in a SQLite database located in ~/AppData/mydb.db. Due to numerous problems I was having deploying System.Data.SQLite, I modified my code to use this sharp-sqlite library. Everything works fine when inserting data in debug mode.
When deployed on Azure, the user supplied data is inserted into the SQLite database. No errors are thrown during this process. However, when try to view the data (which should now exist in the database) nothing is there. I also added a link on my web app so that I could download the database. Downloading it verified that the data is not being saved.
It seems like Azure is preventing the database from being updated. Has anyone experienced a similar problem.
Here is a sample of the code that I'm using:
Community.CsharpSqlite.SQLiteClient.SqliteConnection cnn = new SqliteConnection("data source=file:" + Server.MapPath(@"~\App_Data\mydb.db"));
cnn.Open();
cmd.CommandText = "INSERT INTO Data(x,y,z) VALUES(?,?,?)";
System.Data.Common.DbParameter X = cmd.CreateParameter();
System.Data.Common.DbParameter Y = cmd.CreateParameter();
System.Data.Common.DbParameter Z = cmd.CreateParameter();
cmd.Parameters.Add(X);
cmd.Parameters.Add(Y);
cmd.Parameters.Add(Z);
X.Value = "some"
Y.Value = "sample"
Z.Value = "data"
cmd.ExecuteNonQuery();
dbTrans.Commit();