如何使用 VS2008 Server Explorer 在 SQLite 中创建表
我想使用 VS2008 中的服务器资源管理器在 SQLite 数据库中创建一个表。我可以对数据库执行其他操作,但在使用查询生成器创建表时,我收到“不支持”消息。除了仅出于创建表的目的而编写代码之外,还有其他方法吗?
CREATE TABLE myTable
(
ID INTEGER PRIMARY KEY AUTOINCREMENT,
Name VARCHAR(100)
)
SQLite 3.6.16 的 .NET Framework 数据提供程序
I would like to create a table in a SQLite database using the Server Explorer in VS2008. I am able to do other operations on the database but when it comes to creating a table using the query builder I get Not Supported messages. is there another way other than writing code just for the sole purpose of creating the table?
CREATE TABLE myTable
(
ID INTEGER PRIMARY KEY AUTOINCREMENT,
Name VARCHAR(100)
)
.NET Framework Data Provider for SQLite 3.6.16
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SQLite 数据库有一个简单的前端,称为 SqLiteMan。您可以使用此前端管理器非常轻松地创建数据库/表。
There is a simple front end for SQLite databases called SqLiteMan. You can create the database/tables very easily using this front end manager.
这很奇怪。使用服务器资源管理器工具将表添加到现有数据库中没有任何问题。
That's strange. I have no problems adding tables to an existing database using the Server Explorer tools.