I would like to create a new database from my C# application.
How can I do that?
I'm assuming once I create it, I can simply generate a connection string on the fly and connect to it, and the issue all the CREATE TABLE statements.
|
|
I would like to create a new database from my C# application. I'm assuming once I create it, I can simply generate a connection string on the fly and connect to it, and the issue all the CREATE TABLE statements.
|
||
|
|
|
|
KB307283 explains how to create a database using ADO.NET. From the article:
|
||
|
|
|
|
CREATE DATABASE works |
||
|
|
|
|
Look into the CREATE DATABASE statement. |
||
|
|
|
|
There's probably an uber-leet way of doing this, but why not just connect to the master database and feed in some sql? |
||
|
|