は、私が働いているものですVBの.NETでのSQLServerのDBからレコードを取得します。ここ
Dim connstr = "data source=mydatasource;initial catalog=gcs_dw;persist security info=True;user id=myuser;password=mypassword;Asynchronous Processing=True"
Dim sqlquery = "SELECT * FROM Customer WHERE CITY = 'Anytown'"
Dim connection As SqlConnection = New SqlConnection(connstr)
connection.Open()
Dim command As SqlCommand = connection.CreateCommand()
command.CommandText = sqlquery
Dim reader As SqlDataReader = command.ExecuteReader()
reader.Read()
Console.WriteLine(reader.ToString)
connection.Close()
Console.Read()
あなたが見ることができるように、私は現在、すべてのコマンドラインにクエリの結果を表示し、しようとしていますこれは "System.Data.SqlClient.SqlDataReader"です。私のSQLクエリの結果はどこに行きますか、なぜそれらを取得できないのですか?
、私は単純に使用するために他に何を知りませんでした。 .GetStringと.GetValueの両方が完全に機能しました。ありがとう! – Brian