PRB: ODBC Error IM002 (0): Data Source Not Found...

ID: Q112479


The information in this article applies to:


SYMPTOMS

When you are trying to connect to a server with a DBConnect() command, the following error message is displayed:

ODBC error IM002 (0): [Microsoft][ODBC DLL] Data source not found and no default driver specified


RESOLUTION

This error could be caused by one of the following situations:

For more information about the Oracle connect string:
  1. Open the Control Panel and double-click the ODBC Driver Manager.


  2. Select the Oracle driver from the Data Sources (Driver) list.


  3. Click the Help button.


  4. On the Help screen that comes up, scroll to the section that reads "SQL*Net Connect String."



MORE INFORMATION

To reproduce the problem using SQL Server:

  1. In the Control Panel's ODBC Driver Manager, set up a SQL Data Source with the following information:
    
          Data Source Name: test
          Description: test
          Server: REDDFOXX 
    The server name will vary depending upon the network and the actual name that the server's administrator has given the server.


  2. Create and run the following program:
    
          SET LIBRARY TO SYS(2004)+"fpsql.fll"
          PUBLIC errval
          PUBLIC errmsg
          PUBLIC handle
    
          errval=0
          errmsg=' '
          sourcename= 'wrong_name'  && This should have been
                                    && sourcename='test'
    
          user= 'sa'                && This is your user ID for SQL
                                    && Server.
    
          passwd=''                 && Password for the user ID on the
                                    && line above.
    
          ********CONNECT
    
          handle=DBConnect(sourcename,user,passwd)
          IF handle > 0
             WAIT WINDOW 'Successfully Connected' nowait
          ELSE
             error=DBError(0,@errmsg,@errval)
             WAIT WINDOW STR(error)+' '+STR(errval)+' '+errmsg
          ENDIF 


Additional query words: FoxDos FoxWin IM002 ODBC CK errmsg err msg


Keywords          : kb3rdparty kbcode kberrmsg kbnetwork FxtoolCk 
Version           : 2.50 2.50a 2.50b | 2.50 2.50a 2.
Platform          : MS-DOS WINDOWS 
Issue type        : 

Last Reviewed: July 29, 1999