|
|
|
Click here to copy the following block |
Sub ExecuteSqlScriptsWithOsql(ByVal dbName As String, _ ByVal isWinAuth As Boolean, ByVal login As String, ByVal pwd As String, _ ByVal ParamArray scriptFiles() As String) Dim osqlParams As String = "" If (isWinAuth) Then osqlParams = String.Format("-E -d {0} -i ", dbName) Else osqlParams = String.Format("-U {0} -P {1} -d {2} -i ", login, pwd, _ dbName) End If Dim proc As New Process proc.StartInfo.FileName = "osql.exe" proc.StartInfo.CreateNoWindow = True proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden Dim scriptFile As String For Each scriptFile In scriptFiles proc.StartInfo.Arguments = osqlParams & """" & scriptFile + """" proc.Start() proc.WaitForExit() Next 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 ) |
|
|