I'm getting this err msg:
...with this code:
SqliteConnection conn = new SqliteConnection(connStr);
String query = "INSERT INTO dbo.CartographerMain " +
"(MapName, MapNotes) " +
"VALUES (@MapName, @MapNotes)";
using (SqliteCommand cmd = new SqliteCommand(query, conn))
{
cmd.Parameters.AddWithValue("@MapName", mapName);
cmd.Parameters.AddWithValue("@MapNotes", mapNotes);
await conn.OpenAsync();
int result = await cmd.ExecuteNonQueryAsync();
. . .
My connStr path is:
Data source=C:\Users\bclay\source\repos\CartographerYou\CartographerYou\bin\x86\Debug\AppX\Cartographer.db
...and you can see that the database and table do exist in the expected location:
I'm also getting this warning message when compiling, which I don't understand, but which might be part of (or all of?) the problem: