Asp.net app_data文件夹包含db
我正在使用 VS 2005
我是 asp.net 的新手,我有一个在 asp.net c# 中创建的项目,该项目使用 sql server Express 版本地数据库。
有一个 app_data 文件夹,里面有 *.mdf 文件,我可以看到它,也可以从中浏览表格。
在应用程序数据文件夹中,我可以看到有几个
名为的 .sql 脚本 创建所有对象.sql 删除所有数据.sql EnableConstaints.sql
当我运行项目时,我发现需要很少的程序,并且它们的脚本存在于“CreateAllObjects.sql”中,但问题是我不知道在 vs.net IDE 中如何执行这些 .sql 脚本来创建对象,请帮助我? ?
I am using VS 2005
I am new to asp.net i have a project created in asp.net c# which is using sql server express edition local database.
there is a app_data folder there is *.mdf file inside i can see it also i can browse the tables from it.
In app data folder i can see there are few .sql scripts
named
CreateAllObjects.sql
DeleAllData.sql
EnableConstaints.sql
when i run project i found few procedures are required and their scripts exists in "CreateAllObjects.sql" but problem is i don't know in vs.net IDE how can execute these .sql scripts to create objects please help me??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要有 SQL Server Management Studio Express 才能运行这些脚本。安装后,您只需双击并在数据库上运行这些脚本即可。干杯。
You need to have SQL Server Management Studio Express to run these scripts. When installed you can just double click and run these scripts on your databases. Cheers.