M
Marty
I have a DataSet with a DataTable that I created from a text file.
Now I would like to run querys against the table using SQL. Something
like:
SELECT tblTemp.col1, tblTemp.col2, tblTemp.col3
FROM tblTemp
WHERE (((tblTemp.col1) Like "*A") AND ((tblTemp.col3) Like "*e"));
Is this possible without saving to a database? My searches are turning
up nothing.
Now I would like to run querys against the table using SQL. Something
like:
SELECT tblTemp.col1, tblTemp.col2, tblTemp.col3
FROM tblTemp
WHERE (((tblTemp.col1) Like "*A") AND ((tblTemp.col3) Like "*e"));
Is this possible without saving to a database? My searches are turning
up nothing.