创建用于在 SQLce 数据库中创建表的 SQL 语句
我开始学习数据库,并且我将使用SQLce。是否有某种类型的库可以帮助创建正确的 SQL 语句来创建表等? (不适用于数据库查询,因为我计划使用 LINQ)。我不是在考虑 MS 库,而是可能是一些业余项目..
I'm starting to learn database, and I will work with SQLce. Is there some type of library that can assist in creating the proper SQL statements for creating tables etc? (Not for query of the database, as I plan to use LINQ). I'm not thinking an MS library, but some amateur project maybe..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要下载 SQL Server Management Studio表达。 SSMS 工具可让您连接到 SQL CE 以及完整的 SQL Server 数据库,最重要的是它是免费的。您可以通过 GUI 创建表,然后您可以让它向您显示 SQL 脚本并以这种方式学习,而不是保存表。您在 GUI 中执行的所有操作都会在幕后执行 T-SQL,并且您可以选择保存所有 SQL 并自行运行。
请参阅此处 还可以了解更多详细信息。
You want to download SQL Server Management Studio Express. The SSMS tools let you connect to SQL CE as well as the full blown SQL Server databases, and best of all it's free. You can create your tables via the GUI, and then instead of saving the table, you could have it show you the SQL script instead and learn that way. Everything you do in the GUI executes T-SQL behind the scenes and you have the option of saving all that SQL and running it yourself.
See this stackoverflow question here too for some more details.