本文整理汇总了VB.NET中System.Data.SqlClient.SqlCommand.CommandType属性的典型用法代码示例。如果您正苦于以下问题:VB.NET SqlCommand.CommandType属性的具体用法?VB.NET SqlCommand.CommandType怎么用?VB.NET SqlCommand.CommandType使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类System.Data.SqlClient.SqlCommand
的用法示例。
在下文中一共展示了SqlCommand.CommandType属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: CreateSqlCommand
Public Sub CreateSqlCommand()
Dim command As New SqlCommand()
command.CommandTimeout = 15
command.CommandType = CommandType.Text
End Sub
示例2: MainClass
' 导入命名空间
Imports System
Imports System.Data
Imports System.Data.SqlClient
public class MainClass
Shared Sub Main()
Dim SqlConnection1 As New SqlConnection("server=(local)\SQLEXPRESS;" & _
"integrated security=sspi;database=MyDatabase")
Dim thisCommand As SqlCommand = SqlConnection1.CreateCommand()
thisCommand.CommandType = CommandType.StoredProcedure
thisCommand.CommandText = "SelectAllEmployees"
Try
SqlConnection1.Open()
Dim thisReader As SqlDataReader = thisCommand.ExecuteReader()
thisReader.Close()
Catch ex As System.Data.SqlClient.SqlException
Dim str As String
str = "Source : " & ex.Source
str &= ControlChars.NewLine
str &= "Exception Message : " & ex.Message
Console.WriteLine("Database Exception" & str)
Catch ex As System.Exception
Dim str As String
str = "Source : " & ex.Source
str &= ControlChars.NewLine
str &= "Exception Message : " & ex.Message
Console.WriteLine("Non-Database Exception " & str)
Finally
If SqlConnection1.State = ConnectionState.Open Then
Console.WriteLine("Finally block closing the connection")
SqlConnection1.Close()
End If
End Try
End Sub
End Class