我正在使用SQLite.Net制作数据库模块
然而,在SQLite.Net中没有使用没有类数据模型的查询的方法吗? (在UWP中)
我正在使用Nuget的SQLite.Net-PCL v3.1.1。
像这样,(这是伪代码)using (SQLite.Net.SQLiteConnection conn)
{
conn.connect("filepath");
DataReader rdr = connn.Query ("select * from customers;");
while ( rdr.EOF() )
{
int iCustomerID = rdr.Rows["CustomerID"];
string strCustomerName = rdr.Rows["CustomerName"];
int iCurrentPoint = rdr.Rows["CurrentPoint"];
}
}
不使用类数据模型。
谢谢!