Returns the first column of the first row of a queries result set
A string of the result
Useful for such queries as: SELECT COUNT(*) FROM myTable
db = new SQLite("testdb");
string strCount = db.GetOne("SELECT COUNT(*) FROM myTable");
int intCount = Int32.Parse(strCount);
SQLiteClient Class | SQLite.NET Namespace