我的代码是
Public Function resload()
Dim conn As MySqlConnection = New MySqlConnection(ConfigurationManager.ConnectionStrings("connectionrms").ConnectionString) ''line 18
Dim comm As MySqlCommand = New MySqlCommand()
Dim dr As MySqlDataReader
conn.Open()
comm = New MySqlCommand("Select distinct name from restaurant", conn)
dr = comm.ExecuteReader()
While dr.Read() <> Nothing
headresnamecombo.Items.Add(dr(0).ToString())
End While
dr.Close()
headresnamecombo.SelectedIndex = 0
conn.Close()
Return Nothing
End Function
我的错误
在 C:\Users\Azinova7\Documents\Visual Studio 2008\Projects\Rest\Rest\billingBody.vb:line 18 中的 Rest.billingBody.resload()
在 C:\Users\Azinova7\Documents\Visual Studio 2008\Projects\Rest\Rest\billingBody.vb:line 229 中的 Rest.billingBody.billingBody_Load(Object sender, EventArgs e)
在 System.Windows.Forms.UserControl.OnLoad(EventArgs e)
在 System.Windows.Forms.UserControl.OnCreateControl()
在 System.Windows.Forms.Control.CreateControl(布尔 fIgnoreVisible)
在 System.Windows.Forms.Control.CreateControl()
在 System.Windows.Forms.Control.ControlCollection.Add(控制值)
在 System.Windows.Forms.Form.ControlCollection.Add(控制值)
在 System.Windows.Forms.Design.ControlDesigner.DesignerControlCollection.Add(控制 c)
之后都是相同的连接代码