| | |
how to create database
Please support our VB.NET advertiser: $4.95 a Month - ASP.NET Web Hosting – Click Here!
Thread Solved
![]() |
VB.NET Syntax (Toggle Plain Text)
[code = VB.NET] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim con As SqlConnection Dim sql As String Dim cmd As SqlCommand con = New SqlConnection("Server=urserver;" & "DataBase=;" & "Integrated Security=ur security;") sql = "CREATE DATABASE ABC ON PRIMARY" + "(Name=abc_data, filename = 'C:\MSSQL7\data\abc.mdf', size=3," + "maxsize=5, filegrowth=10%)log on" + "(name=abc_log, filename='C:\MSSQL7\abc_log.ldf',size=3," + "maxsize=20,filegrowth=1)" con.Open() cmd = New SqlCommand(sql, con) Try cmd.ExecuteNonQuery() MsgBox("DATABASE Created") Catch ex As Exception MsgBox("Database Already Exists!") End Try End Sub
Regards,
Piya:)
Piya:)
![]() |
Similar Threads
- There is no menu choice to create a new database diagram (MS SQL)
- How do I create a database at run-time using VB6.0 (Visual Basic 4 / 5 / 6)
- How do i create a database in vb (Visual Basic 4 / 5 / 6)
- How to create a database during the runtime in VB6?! (Visual Basic 4 / 5 / 6)
- How to create a database, (Community Introductions)
- Need to know how to create a database that will generate a random number (Database Design)
Other Threads in the VB.NET Forum
- Previous Thread: DBdataset Dynamic file path
- Next Thread: Parse an xml stream
| Thread Tools | Search this Thread |
.net .net2008 2005 2008 access account application array basic beginner browser button buttons center check click code combo crystalreport cuesent data database datagrid datagridview date datetimepicker designer dissertation dissertations dissertationtopic dropdownlist excel exists fade file-dialog filter forms ftp generatetags hardcopy html images input insert intel listview module monitor net networking number open output panel passingparameters picturebox picturebox2 port print printing problem project regex right-to-left searchvb.net select serial settings shutdown socket sqldatbase sqlserver survey tcp temperature text textbox timespan toolbox transparency trim txttoxmlconverter user usercontol vb vb.net vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic.net visualstudio.net visualstudio2008 web winforms wpf wrapingcode xml year






