我想使用 Microsoft.ACE.OLEDB.12.0 从 c# 以编程方式创建 Ms access 2007 文件
最佳答案
下面是一些例子:
using System;
using ADOX;
namespace ConsoleApplication1
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
ADOX.Catalog cat = new ADOX.Catalog();
cat.Create("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\myFolder\myAccess2007file.accdb;");
Console.WriteLine("Database Created Successfully");
cat = null;
}
}
}
关于c# - 从 C# 创建 accdb 文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4670149/