|
Subject:
|
Connect to Paradox Using ASP
|
|
Posted By:
|
crobarian
|
Post Date:
|
8/1/2003 3:53:56 PM
|
|
How do I connect to a Paradox table being controlled by a BDE using ASP?
|
|
Reply By:
|
Keyar
|
Reply Date:
|
4/27/2005 11:58:04 AM
|
You will need the Borland Database Engine (BDE) to update dBase files.
Connecting to a Paradox database (ODBC):
cn.Open "driver={Microsoft Paradox Driver (*.db )};" & _ "driverid=538;fil=Paradox 5.X;" & _ "defaultdir=c:\foldername\;" & _ "dbq=c:\foldername\;collatingsequence=ASCII"
The extra space character after *.db in the driver name is necessary. You will need the Borland Database Engine (BDE) to update Paradox ISAM files.
|