Click here to Skip to main content
15,879,474 members
Articles / Web Development / ASP.NET
Article

Create database in sql server using asp.net with C# (VS2005)

Rate me:
Please Sign up or sign in to vote.
3.00/5 (3 votes)
5 Oct 20062 min read 82.5K   1.5K   30   3
Create database in sql server using asp.net with C# (VS2005)

Introduction

It is a sample ASP.Net (VS2005) application for creating a database in Sql server Runtime. I have used SQL-DMO dll. This article will show you how to create a database in Sql server 2005 & 2000.

Some important functions are discussed below:

Add reference to SQL-DMO dll

You can do this by right clicking the project in Solution Explorer, then selecting 'Add Reference', COM components and the latest version of "Microsoft SQLDMO Object Library".

Available Server

SQLDMO.Application oSQLServerDMOApp = new SQLDMO.Application();

SQLDMO.NameList oNameList;

oNameList = oSQLServerDMOApp.ListAvailableSQLServers();

for (int intIndex = 0; intIndex <= oNameList.Count - 1; intIndex++)

{

if (oNameList.Item(intIndex as object) != null)

{

cboServers.Items.Add(oNameList.Item(intIndex).ToString());

}

else

{

cboServers.Items.Add("(Local)");

}

}

cboServers.SelectedIndex = 0;

Create a database on the server

string strDatabaseName = "";

SQLDMO.SQLServer gSQLServerDMO = new SQLDMO.SQLServer();

SQLDMO.Database nDatabase = new SQLDMO.Database();

SQLDMO.DBFile nDBFileData = new SQLDMO.DBFile();

SQLDMO.LogFile nLogFile = new SQLDMO.LogFile();

strDatabaseName = txt_Database.Text.ToString();

try

{

gSQLServerDMO.Connect(this.cboServers.SelectedItem.ToString(), this.txtUser.Text, this.txtPassword.Text);

nDatabase.Name = strDatabaseName;

nDBFileData.Name = strDatabaseName;

nDBFileData.PhysicalName = gSQLServerDMO.Registry.SQLDataRoot + "\\DATA\\" + strDatabaseName + "_Data.mdf";

nDBFileData.PrimaryFile = true;

nDBFileData.Size = 2;

nDBFileData.FileGrowthType = SQLDMO.SQLDMO_GROWTH_TYPE.SQLDMOGrowth_MB;

nDBFileData.FileGrowth = 1;

//Add the DBFile object

nDatabase.FileGroups.Item("PRIMARY").DBFiles.Add(nDBFileData);

//

nLogFile.Name = strDatabaseName + "Log";

nLogFile.PhysicalName = gSQLServerDMO.Registry.SQLDataRoot + "\\DATA\\" + strDatabaseName + "_Log.ldf";

nLogFile.Size = 2;

nDatabase.TransactionLog.LogFiles.Add(nLogFile);

gSQLServerDMO.Databases.Add(nDatabase);

Page.ClientScript.RegisterStartupScript(this.GetType(), "Error", "<script type=\"text/javascript\">alert('Database Sucessfully Created');</script>");

gSQLServerDMO.DisConnect();

}

catch (Exception SQLDBException)

{

Page.ClientScript.RegisterStartupScript(this.GetType(), "Error", "<script type=\"text/javascript\">alert('" + SQLDBException.Message + "');</script>");

return;

}

finally

{

}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
India India
I'm Joshy George.I finished my Post Graduation in Computer Application,i'm from the great 'Gods Own Country', Kerala, India. Now I'm working in Infopark Kochin, as a Sr.software Engineer.my specialised areas are C# ,Asp.Net ,Vb6,smart card application,Tapii,Comm ctrls.

Comments and Discussions

 
Generalit works with some changes for SQL server 2008! Pin
sanchay10111-Feb-09 1:40
sanchay10111-Feb-09 1:40 
Generalusing windows authentication Pin
jikubhai27-Sep-07 21:29
jikubhai27-Sep-07 21:29 
Generaldatabase need more... Pin
pk_mittal19-Nov-06 20:27
pk_mittal19-Nov-06 20:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.