V
VTOcin
Hi,
I'm creating a DataTable from an XML file:
Dim ACES_FLIGHT_SCHEDULE As New DataTable("ACES_FLIGHT_SCHEDULE")
ACES_FLIGHT_SCHEDULE.ReadXml(ACES_Project_Dir + "\FlightSchedule_" +
CaseYear + "_Quarter" + Quarter + "_" + SATSAirportSetName & ".xml")
Then I would like to execute the following SQL Statement on the
DataTable and save the results in another DataTable:
SQL_Query_String = "SELECT " & ACES_FLIGHT_SCHEDULE & " GROUP BY " &
"Origin_Airport_ID"
where Oring_Airport_ID is my field to be grouped by.
How can I make this work ? Sample code would be greatly appreciated.
Thank you,
Nick,
I'm creating a DataTable from an XML file:
Dim ACES_FLIGHT_SCHEDULE As New DataTable("ACES_FLIGHT_SCHEDULE")
ACES_FLIGHT_SCHEDULE.ReadXml(ACES_Project_Dir + "\FlightSchedule_" +
CaseYear + "_Quarter" + Quarter + "_" + SATSAirportSetName & ".xml")
Then I would like to execute the following SQL Statement on the
DataTable and save the results in another DataTable:
SQL_Query_String = "SELECT " & ACES_FLIGHT_SCHEDULE & " GROUP BY " &
"Origin_Airport_ID"
where Oring_Airport_ID is my field to be grouped by.
How can I make this work ? Sample code would be greatly appreciated.
Thank you,
Nick,