使用 ProviderFactory 创建 SQLite 连接时出现异常
我正在尝试使用 ProviderFactory.CreateConnection() 来获取 SQLite 连接。我收到 System.ArgumentException 并显示以下消息:
“不支持关键字:'datetimeformat'。”
连接字符串是:
@"data source=d:\db\Test.db3;Pooling=True;Max Pool Size=10;datetimeformat=Ticks"
在 app.config 文件中,我有:
<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SQLite"/>
<add name="SQLite Data Provider" invariant="System.Data.SQLite"
support="3F" description=".Net Framework Data Provider for SQLite"
type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
</DbProviderFactories>
</system.data>
连接字符串在实例化时有效一个 SQLiteConnection 实例。使用 ProviderFactory 失败。关于如何解决这个问题有什么建议吗?
I am trying to use the ProviderFactory.CreateConnection() to obtain a SQLite connection. I am getting a System.ArgumentException with the following message:
"Keyword not supported: 'datetimeformat'."
The connection string is:
@"data source=d:\db\Test.db3;Pooling=True;Max Pool Size=10;datetimeformat=Ticks"
In the app.config file I have:
<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SQLite"/>
<add name="SQLite Data Provider" invariant="System.Data.SQLite"
support="3F" description=".Net Framework Data Provider for SQLite"
type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
</DbProviderFactories>
</system.data>
The connection string works when I instantiate a SQLiteConnection instance. It fails using the ProviderFactory. Any suggestions on how I can resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,我忘记执行以下代码行:
随后的代码按预期工作,无一例外:
It turned out, that I forgot to execute the following line of code:
And the ensuing code worked then as expected without exception: