数据库
C# 联合 SQLite
Vector_LW
学无止境
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQLite学习——C#操作数据库(增删改查、保存、显示)
https://zhidao.baidu.com/question/1988946282128601667.html原创 2019-09-20 10:39:47 · 984 阅读 · 0 评论 -
SQLite学习——SQL基本语句学习
学习网站:https://www.runoob.com/ -- 创建表 create table bookinfo ( user_id char(10) not null, book_id char(10) Not null, book_price int not null, user_age int not null ); -- 删除表 DROP TABL...原创 2019-09-19 18:24:15 · 286 阅读 · 0 评论 -
SQLite学习——Dapper初识
dapper下载:https://www.nuget.org/packages/Dapper/1.40.0原创 2019-09-21 16:04:05 · 792 阅读 · 0 评论 -
SQLite学习——Dapper一些基本操作
参考:https://blog.youkuaiyun.com/penghao_1/article/details/82624453 首先创建两个类(数据库对象映射) public class BOOKINFO { public string user_id { get; set; } public string book_id { get; set; } ...原创 2019-09-23 11:30:59 · 757 阅读 · 0 评论
分享