I'm stumped - I can create a connection, open the database, get the dB schema - I know because 'connection.GetSchema()' works - but when I create a SqliteCommand, give it a normal SELECT command string and call cmd.ExecuteReader(), I get a "no such table" stop.
The table does exist! Honest. I guess I could upload a screenshot, but I'm hoping you'll take my word for it. I even tried making another table with a different name, and trying again. No luck. The database is not password protected. Here's the code
string cmdText = "SELECT * FROM t_People";
SQLiteConnection c = new SQLiteConnection("Data Source = artbase.s3db");
c.Open();
SQLiteCommand cb = new SQLiteCommand(cmdText, c);
DbDataReader rder = cb.ExecuteReader();
return rder;
Runtime error "no such table: t_People"