1

このコードは機能します。これは、インターネットで見つけたいくつかのコードに基づいています。

コーディングがスカラー値を取得するための最良の方法であるかどうか教えてください。また、より良い方法がある場合は、コーディング サンプルを示すことができますか?

Dim objParentNameFound As Object

TextBoxParentsName.Text = ""

If TextBoxParentID.Text <> "" Then

    ' Display the parent's name using the parent ID. '
    Dim strSqlStatement As String = "Select FatherName " & _
                                      "From Parents " & _
                                     "Where ID = @SearchValue"

    ' Set up the sql command and lookup the parent. '
    Using objSqlCommand As SqlCommand = New SqlCommand(strSqlStatement, ObjConnection)

        With objSqlCommand

            ' Add SqlParameters to the SqlCommand. '
            .Parameters.Clear()
            .Parameters.AddWithValue("@SearchValue", TextBoxParentID.Text)

            ' Open the SqlConnection before executing the query. '
            Try
                ObjConnection.Open()

                Try
                    objParentNameFound = .ExecuteScalar()
                    If objParentNameFound <> Nothing Then

                        ' Display the parent name here. '
                        TextBoxParentsName.Text = objParentNameFound
                    End If

                Catch exSqlErrors As SqlException
                    MessageBox.Show("Sorry, I couldn't execute your query because of this error: " & _
                                    vbCrLf & vbCrLf & exSqlErrors.Message, _
                                    "Error")
                End Try
            Catch exErrors As Exception

                MessageBox.Show("Sorry, there was an error. Details follow: " & _
                                vbCrLf & vbCrLf & exErrors.Message, _
                                "Error")
            Finally
                ObjConnection.Close()
            End Try
        End With 
    End Using 
End If 
4

1 に答える 1

3

Microsoft Access Applicationブロックには、ADO.Net の使用方法の優れた例がいくつかあります。ExecuteScalar()特に役立つと思われるのは、必要なプロセスを簡単に呼び出せるように、一連のオーバーロードされたメソッドなどにタスクを整理した方法です。投稿したサンプルは、懸念事項を分離することで大きなメリットがあります。つまり、接続、コマンド、およびパラメーターを構築するために使用するコードを取得し、それを別のメソッドまたは複数のメソッドにします。これにより、コードベース全体でコードをコピーして貼り付けることなく、コードを再利用できます。これにより、呼び出し元のコードでパラメーターを渡すだけで、結果をテキスト ボックスやその他のコントロールにバインドできます。

編集: 例 SqlHelper.vb クラスを使用すると仮定すると、次のようなことができます。

Dim searchValue As Integer = 1
Dim myConnectionString As String = "MyConnectionString"
Dim sqlStatement As String = "SELECT FatherName FROM Parents WHERE ID = @SearchValue"
Dim paramList(0) As SqlParameter
paramList(0) = New SqlParameter() With {.Value = searchValue, .ParameterName = "@SearchValue"}

TextBoxParentsName.Text = SqlHelper.ExecuteScalar(myConnectionString, CommandType.Text, sqlStatement, paramList).ToString()
于 2012-02-27T14:31:54.447 に答える