Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

CreateDatabase - Creating a SQL Server database

Total Hit ( 3114)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


Click here to copy the following block
' Create a SQL Server database with the specified name.
' If the second parameter is True and a DB with the same name is already
' present,
' it is dropped before the new DB is created.
' Note: requires Imports System.Data.SqlClient
'
' Example:
'  Dim connString As String = "server=(local); user id=sa; password=;
' Database=master;"
'  Try
'   CreateDatabase(connString, "MyTestDB", True)
'  Catch ex As Exception
'   MessageBox.Show(ex.Message)
'  End Try

Sub CreateDatabase(ByVal connString As String, ByVal dbName As String, _
  Optional ByVal dropExistent As Boolean = True)

  Dim cn As New SqlConnection(connString)
  Try
    ' the command for creating the DB
    Dim cmdCreate As New SqlCommand("CREATE DATABASE [" & dbName & "]", cn)
    cn.Open()
    If dropExistent Then
      ' drop the existent DB with the same name
      Dim cmdDrop As New SqlCommand _
        ("IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE " _
        & "name = N'" & dbName & "') DROP DATABASE [" & dbName & "]", _
        cn)
      cmdDrop.ExecuteNonQuery()
    End If
    ' create the DB
    cmdCreate.ExecuteNonQuery()
  Finally
    cn.Close()
  End Try
End Sub


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.