我有一个问题..现在,当我在Sql Button上执行来自Visual Studio 2012的查询时,它给了我结果为1行影响了这个图片>>
但是当我从我的程序中执行相同的查询时,它会给我这条消息>>>
照片链接2:http://imgur.com/sTMwtaL
只给我一个不像visual studio sql和Sql Server
的消息现在我需要制作像我需要的视觉工作室当用户执行查询时显示结果在文本框中像sql不仅消息我需要在文本框中显示所有结果
我的代码:
mysqlconn = New SqlConnection
mysqlconn.ConnectionString = "Data Source=" + Form2.txtServerName.Text + ";initial catalog=" + Form2.txtdatabasename.Text + ";user id=" + Form2.textusername.Text + ";password=" + Form2.txtpassword.Text
If TextBox2.Text = "" Then
MsgBox("please put a name")
Else
Try
mysqlconn.Open()
command = New SqlCommand(Query.Text, mysqlconn)
command.ExecuteNonQuery()
mysqlconn.Close()
MsgBox("completed successfully. ", MsgBoxStyle.Information, "Your Query")
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End If