' create and return a DataAdapter over an open SqlConnection' and initialize its delete, insert, and update commands'' CN is the SqlConnection object' SQL is the SQL Select statement to be executed'' any exception is thrown to the callerFunction CreateDataAdapter_Sql(ByVal cn As System.Data.SqlClient.SqlConnection, _ ByVal sql As String) As System.Data.SqlClient.SqlDataAdapter ' Create the DataAdapter Dim da As New System.Data.SqlClient.SqlDataAdapter(sql, cn) ' create a CommandBuilder Dim cb As New System.Data.SqlClient.SqlCommandBuilder(da) ' derive the delete/insert/update commands da.DeleteCommand = cb.GetDeleteCommand() da.InsertCommand = cb.GetInsertCommand() da.UpdateCommand = cb.GetUpdateCommand() ' dispose the CommandBuilder and return the result cb.Dispose() Return daEnd Function
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.
Related Posts
- Human Firewall: How Employees Can Protect or Compromise a Company’s Cybersecurity
- How To Block Texts On Android
- Expanded Perforce Consulting Services Help Customers Boost Security, Raise Development Efficiency and Adopt DevOps
- MapR Unveils a Kafka Alternative Called Streams
- Microsoft Azure Debuts Search Improvements, Hybrid Test Environments























