08-04-2008, 03:42 PM
Try adding your columns names using the below code to your Data Sheets.
Code:
DataTable.AddSheet "DBOutput"
arrHeader = Array("Col1", "Col2", "Col3", "Col4")
For each s in arrHeader
DataTable.GetSheet ("DBOutput").AddParameter s, ""
Next