| | |
how to create database
Please support our VB.NET advertiser: Intel Parallel Studio Home
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 |
Tag cloud for VB.NET
.net .net2008 2008 access add advanced application array basic beginner browser button buttons center click client code combo convert cpu cuesent data database datagrid datagridview datetimepicker designer dissertation dissertations dissertationtopic eclipse employees excel exists filter forms function html images lib listview map mobile module msaccess mysql net number open page pan panel pdf picturebox picturebox2 port position print printing printpreview problem read regex reuse right-to-left save search serial settings shutdown socket sorting sqldatbase sqlserver storedprocedure textbox timer timespan transparency txttoxmlconverter usercontol vb vb.net vb2008 vba vbnet vista visual visualbasic visualbasic.net visualstudio.net visualstudio2008 web webbrowser winforms winsock wpf wrapingcode xml year






