无法以编程方式创建数据库文件 (SQL Server 2008 R2 Express)
我正在尝试以编程方式使用 LINQ to SQL 创建数据库。
我尝试过(按照这个) :
MySQLSvrDb db = new MySQLSvrDb(@"c:\mydb.mdf");
if (!db.DatabaseExists())
{
db.CreateDatabase();
}
但我收到 SQLException“存在同名数据库,或无法打开指定的文件,或者它位于 UNC 共享上。”
但是,对于单元测试,我通过以下方式创建了一个数据库(确保每个测试都有一个空数据库):
MySQLSvrDb db = new MySQLSvrDb(@"C:\testdb.mdf");
if (db.DatabaseExists())
{
Console.WriteLine("Deleting old database...");
db.DeleteDatabase();
}
db.CreateDatabase();
这工作正常。我的问题是我没有看到第一种方法有什么不同。这个问题可能与这个有关,但是建议的解决方案不起作用。
有什么提示吗?
编辑
如果我只是跳过 DatabaseExists() 步骤,它可以工作,但我需要检查是否已经有一个数据库。
I'm trying to create a database with LINQ to SQL programmatically.
I tried (following this):
MySQLSvrDb db = new MySQLSvrDb(@"c:\mydb.mdf");
if (!db.DatabaseExists())
{
db.CreateDatabase();
}
But I get a SQLException "A database with the same name exists, or specified file cannot be opened, or it is located on UNC share."
However, for unit tests I created a database the following way (making sure I have a empty db for every test):
MySQLSvrDb db = new MySQLSvrDb(@"C:\testdb.mdf");
if (db.DatabaseExists())
{
Console.WriteLine("Deleting old database...");
db.DeleteDatabase();
}
db.CreateDatabase();
This works fine. My problem is I don't see a difference to the first approach. The problem is maybe somehow related to this, but the suggested solutions didn't work.
Any hints?
EDIT
If I just skip the DatabaseExists() step it works, but I need to check, if there's already a Db.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如何:动态创建数据库 (LINQ to SQL)
如何在 Linq to 中创建数据库sql
您是否尝试先删除第一个创建的数据库?并再次运行该方法?
为什么你在本地创建数据库,你仍然使用sql server附加它吗?
您可以使用 sql lite 或 sql server ce DB 代替。
问候!
How to: Dynamically Create a Database (LINQ to SQL)
How to create DB in Linq to sql
Did you try deleting the first created DB first? and run the method again?
Why you create Database locally,do you still attached it using sql server?
You can use sql lite or sql server ce DB instead.
Regards!