Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How To Create ODBC Data Sources Using SqlConfigDataSource


View products that this article applies to.

Summary

It is possible programmatically to create an ODBC datasource rather than requiring it to be created manually through the ODBC Administrator (or through the modification of the Odbc.ini file). The SqlConfigDataSource function, found in the Odbccp32.dll, can be used for this purpose.

↑ Back to the top


More information

The following two examples show how to use this API function to create a datasources to a Microsoft Excel 5.0 file using the Microsoft Excel tier 1 driver or to a VFP table. You can find information on the properties that are used for any particular driver by creating an test entry manually through the ODBC administrator and then checking the registry entries that are present. For example, in Windows 95, you can run Regedit.exe and look at the registry for the following entry:
   Hkey_Current_User/Software/ODBC/ODBC.INI
				
Example 1:
 * Code to create a new datasource for an Excel file.
   *
   * First you need to use the Declare DLL function to prototype the
   * SQLConfigDataSource function
   ***
   DECLARE Integer SQLConfigDataSource in odbccp32.dll Integer, Integer,;
           String, String
   ***
   * Now you need to create a string containing the settings appropriate
   * to the driver you are using.. the following is an example for a tier 1
   * Microsoft Excel ODBC driver accessing the Schedule.xls file.
   ***
   settings="DSN=NewExcelDataSource"+chr(0)+;
             "Description=NewExcel Description"+chr(0)+;
             "FileType=Excel 5.0"+chr(0)+;
             "DBQ=C:\schedule.xls"+chr(0)+;
             "MaxScanRows=16"
   * Note: If you have spaces on either side of the equal sign (=), this
   * code will not work.
   ? SQLConfigDataSource(0,1,"Microsoft Excel Driver (*.xls)",settings)
   ***
				
Example 2:
   * Code to create a new datasource to a VFP table.
   *
   * First you need to use the Declare DLL function to prototype the
   * SQLConfigDataSource function
   ***
   DECLARE Integer SQLConfigDataSource in odbccp32.dll Integer, ;
      Integer, String, String
   ***
   * Now you need to create a string containing the settings appropriate
   * to the driver you are using. The following is an example for the
   * Microsoft VFP ODBC driver accessing the customer.dbf file.
   ***
   settings="DSN=VFP Tables"+chr(0)+;
             "Description=VFP ODBC Driver"+chr(0)+;
             "SourceDB=c:\vfp\samples\data\customer.dbf"+chr(0)+;
             "SourceType=DBF"

   * Note: If you have spaces on either side of the equal sign (=), this
   * code will not work.
   ? SQLConfigDataSource(0,1,"Microsoft Visual FoxPro Driver",settings)

   ***
   * Now you can create a view to these datasources either through the view
   * designer or in code.
   ***
				

↑ Back to the top


Keywords: KB142216, kbhowto, kbcode

↑ Back to the top

Article Info
Article ID : 142216
Revision : 5
Created on : 7/1/2004
Published on : 7/1/2004
Exists online : False
Views : 390