ник: Едрёныч
Пример взят из chapter 10 в других та же ошибка.
Module Module1
Const CONNECTION_STRING As String = "Data Source=.\SQLExpress;Initial Catalog=Northwind;Integrated Security=True;"
Const ORDER_ID As Integer = 10503
Sub Main()
SqlDataAdapter_NoUpdatingLogic()
SqlCommand_SubmitChangesViaParameterizedQuerie s()
SqlDataAdapter_SubmitChangesViaParameterizedQuerie s()
SqlDataAdapter_SubmitChangesViaStoredProcedures()
SqlCommandBuilder_ShowSchemaUsedToBuildLogic()
SqlCommandBuilder_SubmitUpdates()
SqlDataAdapter_SubmitChangesInTransaction()
SqlCommandBuilder_SubmitChangesInTransaction()
End Sub
Private Sub SqlDataAdapter_NoUpdatingLogic()
Console.WriteLine("SqlDataAdapter_NoUpdatingLogic - Will throw InvalidOperationException")
'Retrieve the contents of the order into a DataTable.
Dim strSQL As String
strSQL = "SELECT OrderID, ProductID, Quantity, UnitPrice " & _
"FROM [Order Details] WHERE OrderID = @OrderID " & _
"ORDER BY ProductID"
Using cn As New SqlConnection(CONNECTION_STRING)
cn.Open()
Вот у этого cn.Open() и вылезает ошибка. Вполне вероятно, что ответ прост, но я только начал изучать.