public
{
SQLConnection sql=
sql.Open();
ArrayList items=
OleDbDataReader dr=sql.Get_DataReader("Select lblname, Ftooltip, maxlength, itemindex, id from form where repid="+repid+" order by itemindex");
items.Add(
}
dr.Close();
sql.Close();
}This does what it should, and returns an array of type object[], where each instance is of type string[]. Fine.In another webservice, I have this code: (different project, but both are C#.net webservices)
ArrayList info=
OdbcDataReader dr=sql.Get_DataReader("Select * from message");
info.Add(
}Now, i thought they were much the same thing, but when I use this one, the application crashes, telling me:Additional information: Server was unable to process request. --> There was an error generating the XML document. --> The type System.String[] may not be used in this context.What have I done wrong?!