当前位置:Gxlcms > 数据库问题 > VS2010连接SQLite数据库

VS2010连接SQLite数据库

时间:2021-07-01 10:21:17 帮助过:108人阅读

 Visual studio 2010及以上版本,连接SQLite数据库

1、在Sqlite开发站点下载SQLite的.exe安装包

 

Ctrl+F搜索这条语句:This is the only setup package that is capable of installing the design-time components for Visual Studio xxxx

找到对应的VS版本,注意一定要带bundle,集成了设计器;无论32位系统还是64位系统,似乎都要下载32位的(X86)

 

如下图:

 技术分享

 

否则,在Visual Studio中想添加新数据库时没有Sqlite这个选项,下载正确并安装后,在VS中可看到SQLite:

技术分享

 

 2、连接数据库

添加连接--database:db文件

 2、VS2010 在窗体中拉一个按钮和DataGridView,实现点击按钮,在DataGridView显示数据库中的数据

  1. private void button1_Click(object sender, EventArgs e)
  2. {
  3. using (SQLiteConnection con = new SQLiteConnection(Constants.DATA_SOURCE))
  4. {
  5. con.Open();
  6. using (SQLiteCommand cmd = new SQLiteCommand())
  7. {
  8. cmd.Connection = con;
  9. cmd.CommandText = string.Format("select * from jy_cdjy_cdjyhgz");
  10. int rows = cmd.ExecuteNonQuery();
  11. SQLiteDataAdapter oraDA = new SQLiteDataAdapter(cmd);
  12. DataSet ds = new DataSet();
  13. oraDA.Fill(ds);
  14. //con.Close();
  15. DataTable dtbl = ds.Tables[0];
  16. this.dataGridView1.DataSource = dtbl;
  17. }
  18. }
  19. }

  

 

 

 

参考:

http://blog.csdn.net/missautumn/article/details/18567715

VS2010连接SQLite数据库

标签:tar   blog   窗体   idv   eve   ble   ada   --   string   

人气教程排行