Let's say I'm using Visual Studio to run a 'Select *' query against a SQL Server database.
It my understanding that this can be accomplished in one of two ways. (Probably more but stick with me)
Option A: Use the Visual Studio interface to drag and drop a SqlDataAdapter from the toolbox and configure the SqlDataAdapter, SqlConnection, and DataSet and their corresponding properties window using the Visual Studio interface.
Option B: Define all the objects within the code behind module. Here you would...
Is there terminology that is used to differentiate Option A from Option B?
Thanks in advance,
Tim
It my understanding that this can be accomplished in one of two ways. (Probably more but stick with me)
Option A: Use the Visual Studio interface to drag and drop a SqlDataAdapter from the toolbox and configure the SqlDataAdapter, SqlConnection, and DataSet and their corresponding properties window using the Visual Studio interface.
Option B: Define all the objects within the code behind module. Here you would...
Code:
Dim objCommand As SqlCommand
Dim objAdapter As SqlDataAdapter
Dim objDataSet As DataSet
Dim strSQLQuery As String
Is there terminology that is used to differentiate Option A from Option B?
Thanks in advance,
Tim