Binding Arrays to Database?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 2 Array Values below how can i bind them to a database?
Ideas are welcomed!


Dim arrValues(4) As Integer

arrValues(0) = 100

arrValues(1) = 135

arrValues(2) = 115

arrValues(3) = 125

arrValues(4) = 75



Dim arrValueNames(4) As String

arrValueNames(0) = "Jan"

arrValueNames(1) = "Feb"

arrValueNames(2) = "Mar"

arrValueNames(3) = "Apr"

arrValueNames(4) = "May"
 
You can't bind to a database. Using sql commands you can insert into a
database.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top