1.本地是否存在数据库
D层调sqlitehelper,显示出来结果就行,如果更换了数据库那就把sqlcommand,sqldatareader,sqlconneciton等操作数据库,读取数据库的机制性性的东西改成sqlitecommand,sqlitedatareader,sqliteconnection,然后前提需要你下载一个引用,system.data.sqlite.dll文件。
3.不存在的话(也要进行第2步下面的操作)——>先执行创建数据库的过程(找它的相对路径)——>然后执行创建数据表的过程——>插入数据——>显示数据
(下面这样就写到了U层的debug文件夹下面了)
string dbPath="ItcastCater.db"; if (!System.IO.File.Exists(dbPath)) { sqlitehelper.CreateDB("ItcastCater.db"); }
public static void CreateDB(string dbPath) { using (sqliteConnection connection = new sqliteConnection("Data Source=" + dbPath)) { connection.Open(); using (sqliteCommand command = new sqliteCommand(connection)) { command.CommandText = "CREATE TABLE Demo(id integer NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE)"; command.ExecuteNonQuery(); command.CommandText = "DROP TABLE Demo"; command.ExecuteNonQuery(); } } }然后创建表,插入数据,显示数据就行。(ps:创建数据库表,可以引用查询的sqlite方法实现)