[SQLite]SQLite URI配置

Posted oDoraemon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[SQLite]SQLite URI配置相关的知识,希望对你有一定的参考价值。

脱离新手文档使用SQLAlchemy配置sqlite,才发现sqlite的URI指定有点特别.

https://github.com/mitsuhiko/flask-sqlalchemy/issues/469

#Unix/Mac - 4 initial slashes in total
engine = create_engine(‘sqlite:////absolute/path/to/foo.db‘)
#Windows
engine = create_engine(‘sqlite:///C:\path\to\foo.db‘)
#Windows alternative using raw string
engine = create_engine(r‘sqlite:///C:path	ofoo.db‘)

 注意Windows下sqlite后是三道杠. 因为比较常见的是linux下的配置文档,所以很容易误解为正常的配置就是四道杠. 实际的URI格式应为sqlite:///{$path}.

斜杠有误的话会报错: Unable to open the sqlite database file

以上是关于[SQLite]SQLite URI配置的主要内容,如果未能解决你的问题,请参考以下文章

使用片段从数据库 SQLite 获取数据时出错

SQLite 片段函数实现不会在 TextView 中将文本格式化为 HTML

java.lang.NullPointerException: Attempt to invoke virtual method ‘int android.database.sqlite异常(代码片段

导航抽屉片段 Sqlite

Android 逆向使用 DB Browser 查看并修改 SQLite 数据库 ( 从 Android 应用数据目录中拷贝数据库文件 | 使用 DB Browser 工具查看数据块文件 )(代码片段

Android 逆向使用 DB Browser 查看并修改 SQLite 数据库 ( 从 Android 应用数据目录中拷贝数据库文件 | 使用 DB Browser 工具查看数据块文件 )(代码片段