this should be an easy one. I need to format a string array if the length is greater than 1 to look as following: "('STRING','STRING')
Thanx
if (form.getSorCodes().length > 1)
for( int i=0;i<form.getSorCodes().length;i++)
{
//format here
}