|
-
Jan 5th, 2004, 10:21 AM
#1
let_me_in
Being that you gave no information... How would you expect us to solve this problem? You could be using the wrong connection or the database is simply the wrong type or version for the connection.
Post code...etc...
-
Feb 3rd, 2005, 10:50 AM
#2
New Member
Re: paradox
Ok, I'm having the same problem.... here is my connection string and select statement. This code worked fine back in the Summer, and now when the user runs the program they get the [Microsoft][ODBC Paradox Driver]External table is not in the expected format. error..... HELP, please !!!:
Set UNIConnection = New ADODB.Connection
Conn = "Driver={Microsoft Paradox Driver (*.db )};" & _
"Fil=Paradox 5.X;" & _
"DefaultDir=C:\;" & _
"DBQ=C:\;"
With UNIConnection
.ConnectionString = Conn$
.ConnectionTimeout = 0
.Open
End With
MySql = "SELECT * from Unovrec"
Set RsUnitime = New ADODB.Recordset
RsUnitime.Open MySql, UNIConnection
-
Feb 3rd, 2005, 01:41 PM
#3
Re: paradox
ECUnited,
Many times when an app was working and there was no change to it and it stops working, this could mean one of two things.
1) Database corrupted
2) User installed something which overwrote the database components with different versions.
You can correct both:
1) Use the databases repair programs on the database
2) Reinstall the database componebts.
You can use the Automatic OS Updater to reinstall the correct database components.
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
|