Okay Basically i want to put the contents of array called numbers
into a MSSQL database
i can connect to it no problem and select and display data
so its not a connectivity issue
here is what i have so far:
for (int i = 0; i < numbers.length; i++)
{
String sql "INSERT INTO smsmsg(to, msg,from, timesent)VALUES ('number[i]', 'text', 'from', GETDATE())";
access.insert(sqli);
}
Please note Numbers is the array
any help would be appreciated i am new to this and going nuts