Results 1 to 5 of 5

Thread: paradox

Hybrid View

  1. #1
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385
    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...

  2. #2
    New Member ECUnited's Avatar
    Join Date
    Feb 2005
    Posts
    1

    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

  3. #3
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385

    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
  •  



Click Here to Expand Forum to Full Width