P
Pieter Wijnen
I'm just curious why you used ODBC for the ADO connection to SQLServer <g>
Pieter
Pieter
Pieter said:I'm just curious why you used ODBC for the ADO connection to SQLServer <g>
Pieter said:I'm just curious why you used ODBC for the ADO connection to SQLServer <g>
Thanks for that extra explanation.
Do you reckon now that I could do the SELECT INTO construction with
my Interbase database with output to a textfile?
Have been fiddling with several constructions, but sofar no success.
Thanks for that extra explanation.
Do you reckon now that I could do the SELECT INTO construction with
my Interbase database with output to a textfile?
Have been fiddling with several constructions, but sofar no success.
Pieter said:one more thing
SELECT A.* INTO
[Text;Database=C:\Temp\;TextDelimiter=none;ColNameHeader=True;Format=TabDelimited;].[MyTables#txt]
FROM...
seems to ignore the TextDelimiter parameter (works fine if I edit
schema.ini)
Do you know anything about this?
Pieter said:one more thing
SELECT A.* INTO
[Text;Database=C:\Temp\;TextDelimiter=none;ColNameHeader=True;Format=TabDelimited;].[MyTables#txt]
FROM...
seems to ignore the TextDelimiter parameter (works fine if I edit
schema.ini)
Do you know anything about this?
Jamie Collins said:Pieter said:one more thing
SELECT A.* INTO
[Text;Database=C:\Temp\;TextDelimiter=none;ColNameHeader=True;Format=TabDelimited;].[MyTables#txt]
FROM...
seems to ignore the TextDelimiter parameter (works fine if I edit
schema.ini)
Do you know anything about this?
Sure, you can put all sorts of rubbish in the connection string and the
driver will ignore it <g>.
Seriously, I think it is merely popular myth, perpetuated in seemingly
respectable MSDN articles, that such properties may be made in the
connection string.
Following this article
http://www.dicks-blog.com/archives/2004/06/03/external-data-mixed-data-types/
I occasionally see ONEDAYWHEN appearing in connection strings. Popular
myths are easily (accidentally) made!
Jamie.