IBatis使用SQLite数据库,app.config中要怎么配置

IBatis使用SQLite数据库,app.config中要怎么配置,第1张

你写了resultClass,所以返回结果就是Book这个类,你应该有配一个alias。这样写要求你的book类的每一个字段和数据库的字段拼写都一样(首字母小写)。要是要对应的话,要写关联查询的配置,你可以看下api文档,配置较为繁琐。类似这样:

<resultMap type="HrMenu" id="menuResultMap">

<id property="id" column="ID" />

<result property="name" column="name" />

<result property="url" column="url" />

<result property="parentid" column="parentid" />

<result property="level" column="level" />

<result property="seq" column="seq" />

<result property="butnstyle" column="butnstyle" />

<association property="parent" column="parentid" select="HrMenufindMenuById"></association>

<collection property="child" column="id" select="HrMenufindMenusByParentId"></collection>

</resultMap>

<!-- 查询菜单list -->

<select id="findMenuById" parameterType="int" resultMap="menuNavResultMap">

SELECT FROM hr_menu where id=#{id} order by seq;

</select>

<!-- 查询菜单list -->

<select id="findMenusByParentId" parameterType="int" resultMap="menuResultMap">

SELECT FROM hr_menu where parentid=#{id} order by seq asc;

</select>

注意这里面每个net framework都有两个版本,一个带有bundle字眼,一个没有。一个安装的DLL里面包含SQLiteInteropdll,而另一个没有。如果你运行代码的时候报

“无法加载SQLiteInteropdll”的错误,则将安装文件中的

SQLiteInteropdll拷贝到Bin文件中即可。或是在NuGet下载的

packages\SystemDataSQLiteCore10940\build中也有对应的程序。

示例代码

Modelcs

public class Person

{

public Int64 Id { get; set; } //注意要用Int64

public string FirstName { get; set; }

public string LastName { get; set; }

}

public class MyContext : DbContext

{

public DbSet<Person> Persons { get; set; }

public MyContext()

: base("SqliteTest")

{

}

}

Programcs

static void Main(string[] args)

{

MyContext context = new MyContext();

var empList = contextPersonsOrderBy(c => cFirstName)ToList();

ConsoleWriteLine(empListCount);

Person people = new Person()

{

FirstName = "Hello",

LastName = "World"

};

contextPersonsAdd(people);

contextSaveChanges();

ConsoleReadLine();

}

示例代码很简单,就是用EF对Person表进行新增与查看。

配置config文件

如果你是用NuGet获取Sqlite,会自动在config中配置一些相关的信息。

<xml version="10" encoding="utf-8">

<configuration>

<configSections>

<!-- For more information on Entity Framework configuration, visit >

sqlite3只能 *** 作数据库文件。它没有像mysql那样的数据库的概念,它一个文件就是一个数据库,一个数据库就是一个文件

所以你打开数据库文件之后,接下去就是 *** 作“表”了,没有“数据库”了

以上就是关于IBatis使用SQLite数据库,app.config中要怎么配置全部的内容,包括:IBatis使用SQLite数据库,app.config中要怎么配置、如何用Entity Framework 6 连接Sqlite数据库、如何使用SQLite3 *** 作数据库等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9653680.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-30
下一篇 2023-04-30

发表评论

登录后才能评论

评论列表(0条)

保存