|
-
August 20th, 2001, 02:13 AM
#1
export .mdb to .dbf
give some code on how to search, add,edit,delete if my extension name is .dbf i'am useing ADO
-
August 20th, 2001, 07:02 AM
#2
Re: export .mdb to .dbf
You can do it the same way as it is an mdb file. The difference will be only in your connection string.
oConn.Open "Driver={Microsoft dBASE Driver (*.dbf)};" & _
"DriverID=277;" & _
"Dbq=\somepath;"
Note: Specify the filename in the SQL statement. For example:
oRs.Open "Select * From user.dbf", oConn, , ,adCmdText
Note: MDAC 2.1 (or greater) requires the Borland Database Engine (BDE) to update dBase DBF files.
(Q238431).
Iouri Boutchkine
[email protected]
-
April 22nd, 2003, 01:26 AM
#3
dbf and ado
oConn.Open "Driver={Microsoft dBASE Driver (*.dbf)};" & _
"DriverID=277;" & _
"Dbq=\somepath;"
Note: Specify the filename in the SQL statement. For example:
oRs.Open "Select * From user.dbf", oConn, , ,adCmdText
Note: MDAC 2.1 (or greater) requires the Borland Database Engine (BDE) to update dBase DBF files.
(Q238431).
I'tried to use this ..but failed..what am i missing
thanks
cyrus
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|