Hi Group,
I'm attempting to pull info from our database to populate a combo-box in VB.net (Visual Studio Express 2015). Here's my first attempt at the connection:
Dim conn As New Oracle.DataAccess.Client.OracleConnection()
conn.ConnectionString = oraDB
From here I'm not sure how to pull the data into the combobox. I do have my code written to find the information:
Dim sql As String = "select dw01.RP_ID" _
& "from donacwil.RATE_PLANS_SSB dw01" _
& "where dw01.PROP_ID in ('" & propID & "')" _
& "And dw01.DW_RCRD_STS_CD in ('A')" _
& "Order by dw01.RP_ID"
Does anyone know what to do from here?
Thanks for your help.
Don