0
我想在我的應用程序(Xamarin.Android)上創建一個數據庫。我使用本教程 http://developer.xamarin.com/recipes/android/data/databases/sqlite/Visual Studio + Xamarin:創建數據庫SQLite
但該網站沒有闡明有關參數path
上
private string createDatabase(string path)
{
try
{
var connection = new SQLiteAsyncConnection(path);{
connection.CreateTableAsync<person>();
return "Database created";
}
catch (SQLiteException ex)
{
return ex.Message;
}
}
誰能幫助我,這個參數?
我嘗試用「/app1/databases/dbPEduc.db」,但顯示了異常:
SQLite.SQLite3+Result.CannotOpen
感謝'@ JASON'這個工作完美... – 2015-02-09 19:32:26