DataSet数据集作用:是在内存中建立临时的数据仓库,可以对其进行操作并同步到底层数据库。
DataAdapter
SQLiteConnection con = new SQLiteConnection("test.db");
//sql语句
string sql = "select * from table_name where column_name1=@param1 and column2=@param2";
SQLiteCommand cmd = new