ryan010101
Technical User
I was using ASP to connect to a paradox table and it was working fine, but I decided I'd rather do it in ColdFusion. In ASP here is how I connected to the db:
RS.open SQL, "DSN=mvdParadox;DBQ=i:\"
I couldn't connect with ASP until I found out I had to add "DBQ=i:\" (i:\ being the directory where the table is)\ but I don't really know what DBQ is or what it's equivelent is in CF. Doing this:
<cfquery name="vendor" datasource="mvdParadox" dbtype="ODBC" dbq="i:\">
surely doesn't work.
Any suggestions?
thanks
Ryan
RS.open SQL, "DSN=mvdParadox;DBQ=i:\"
I couldn't connect with ASP until I found out I had to add "DBQ=i:\" (i:\ being the directory where the table is)\ but I don't really know what DBQ is or what it's equivelent is in CF. Doing this:
<cfquery name="vendor" datasource="mvdParadox" dbtype="ODBC" dbq="i:\">
surely doesn't work.
Any suggestions?
thanks
Ryan