DOCUMENT:Q142216 22-FEB-2000 [foxpro] TITLE :HOWTO: Create ODBC Data Sources Using SqlConfigDataSource PRODUCT :Microsoft FoxPro PROD/VER:WINDOWS:2.5,3.0,3.0b,6.0 OPER/SYS: KEYWORDS:kbcode kbODBC kbvfp300 kbvfp300b kbvfp600 kbMDAC250 ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b, 6.0 - Microsoft Data Access Components version 2.5 ------------------------------------------------------------------------------- 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. 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. *** Additional query words: ODBC SQLCONFIGDATASOURCE ====================================================================== Keywords : kbcode kbODBC kbvfp300 kbvfp300b kbvfp600 kbMDAC250 Technology : kbVFPsearch kbAudDeveloper kbMDACSearch kbMDAC250 kbVFP300 kbVFP300b kbVFP600 Version : WINDOWS:2.5,3.0,3.0b,6.0 Issue type : kbhowto ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 2000.