标签:style blog http color 使用 os io 文件
今天是在吾索实习的第18天。我主要学习了如何在ASP.NET中对SQLite数据库的操作,其基本操作如下:
具体代码如下(其为一个统计表中行数的例子):
1 public int Count() /*** 统计表中的行总数 ***/ 2 { 3 SQLiteConnection Conn = new SQLiteConnection(ConStr) //设置SqlConnection对象连接数据库的字符串 4 5 Conn.Open(); //打开数据库的连接 6 7 string Sqlstr = "select count(*) as Num from tb_Demo "; 8 SQLiteCommand Cmd = new SQLiteCommand(Sqlstr, Conn); 9 SQLiteDataReader Re = Cmd.ExecuteReader(); //使用datareader对象读取数据 10 Re.Read(); 11 int num = Convert.ToInt32(Re["Num"]); 12 13 Conn.Close(); //关闭数据库的连接 14 15 return num; 16 }
虽然对数据的各种操作不尽相同,但大概的思路是一样的,所以大家可以根据上面的例子举一反三。希望我的这些小小心得能帮上大家的忙,谢谢!
2014-08-01 ASP.NET中对SQLite数据库的操作——ADO.NET,布布扣,bubuko.com
2014-08-01 ASP.NET中对SQLite数据库的操作——ADO.NET
标签:style blog http color 使用 os io 文件
原文地址:http://www.cnblogs.com/IamYoung/p/3886042.html