ArrayList SQLQuery( string fieldList, string whereClause, ArrayList whereValues, string orderByString )
Parameters
- fieldList
- A comma separated list of field names or "*" for all fields
- whereClause
- The built where clause to allow selection of the reuqired data from the table.
- whereValues
- The assocciated parameter values for the where clause.
- orderByString
- Any order by clause in string format
Return Value
An array list of strings containg the selectionr results that can be iterated be the client code.