Net Core教程

ADO.NET SQLite

本文主要是介绍ADO.NET SQLite,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在.Net Framework项目中使用SQLite只需要安装System.Data.SQLite.Core包  

Install-Package System.Data.SQLite.Core

简单使用:

new SQLiteConnection($"Data Source =ab.db; Initial Catalog = sqlite; Integrated Security = True;")
SQLiteCommand sqliteCommand = new SQLiteCommand(sqlstr, abdb);

  

 

在UWP项目中使用SQLite只需要安装Microsoft.Data.Sqlite.Core包

Install-Package Microsoft.Data.Sqlite.Core

简单使用:

new SqliteConnection($"Filename={abdbpath}");
SqliteCommand sqliteCommand = new SqliteCommand(sqlstr, abdb);

  

  

 

这篇关于ADO.NET SQLite的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!