|
Does anyone know how I can retrieve parameters from
differnet HTML pages using one servlet and an array. I want to do something like
this:
String[ ] parameters;
int i = 0;
while(parameters.hasMoreElemenets());
{
i++;
parameters[ i ] =
element;
}
Then for my SQL statement I could write a
something like this:
String SQL= "INSERT INTO table(column1, column2)
values('" + parameters[1] + "', " + "'" + paramaters[2]
"',");
Does this ring any bells with anyone?
John D. McDonald
CipherStream Systems email: [EMAIL PROTECTED] web: www.cipherstream.com ------------------------------------------------------- Secure E-Business Is Our Business ------------------------------------------------------- |
- Re: String array for parameters John McDonald
- Re: String array for parameters Chris Pratt
