Hi
I'm not sure what I'm trying is feasible but I'd like your input.
I have *.csv created dynamically which I access in Crystal Report9 through ODBC (Micrsoft Jet). Everything works fine but I found a problem for deployment, the column name of the first column in the csv file changes according to timezone. I didn't find a way for it to have always the same name.
So my question is:
Is there a way in MS Jet or ODBC to get access to this table`s first column using a partial name (which would always start with the same prefix and no other columns would start by this prefix) or by an index?
I.e.: column name would start with "(PDH-CSV"
Thanks a lot
Marcel
I'm not sure what I'm trying is feasible but I'd like your input.
I have *.csv created dynamically which I access in Crystal Report9 through ODBC (Micrsoft Jet). Everything works fine but I found a problem for deployment, the column name of the first column in the csv file changes according to timezone. I didn't find a way for it to have always the same name.
So my question is:
Is there a way in MS Jet or ODBC to get access to this table`s first column using a partial name (which would always start with the same prefix and no other columns would start by this prefix) or by an index?
I.e.: column name would start with "(PDH-CSV"
Code:
SELECT
table_name.(PDH-CSV% AS my_date,
table_name.column2
FROM
table_name
WHERE ...
Thanks a lot
Marcel