How to create a new database on SQL Server 2000 from (VS.NET2003 C#) code
Hi
I need to include in my Visual Studio .NET 2003 project some code responsible to create a new database on a SQL Server.
Suppose I have any necessary security permission for login on SQL Server (sysadmin, serveradmin, etc.).
Note that I only use C# source in my project.
Tryed already:
1. to use SQLConnection or SQLCommand, but both require an existing database name
2. to use SQL-DBO classes, but found no support for C#
Thank you

