List:Commits« Previous MessageNext Message »
From:pharvey Date:August 29 2006 11:34pm
Subject:Connector/ODBC 5 commit: r497 - in trunk: Driver Driver/Driver Driver/Setup SDK SDK/C SDK/Dbg SDK/Installer SDK/MYSQLPlus SDK/ODBCPlus SDK/ODBCPlusQt ...
View as plain text  
Added:
   trunk/Driver/Driver/README.txt
   trunk/Driver/Setup/README.txt
   trunk/SDK/C/README.txt
   trunk/SDK/Dbg/README.txt
   trunk/SDK/Installer/README.txt
   trunk/SDK/MYSQLPlus/README.txt
   trunk/SDK/ODBCPlus/README.txt
   trunk/SDK/ODBCPlusQt/README.txt
   trunk/SDK/Tst/README.txt
   trunk/Tools/Browser/README.txt
   trunk/Tools/Installer/README.txt
   trunk/Tools/README.txt
   trunk/Tools/Shell/README.txt
   trunk/Tools/dltest/README.txt
Modified:
   trunk/Driver/README.txt
   trunk/SDK/README.txt
Log:
- completed some README's

Added: trunk/Driver/Driver/README.txt
===================================================================
--- trunk/Driver/Driver/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/Driver/Driver/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,14 @@
+MySQL Connector/ODBC
+DRIVER (library)
+======================================================
+
+This is the source code for the Driver library - the 
+core functionality provided by C/ODBC. 
+
+The single library file built by this source code can 
+be used on its own to provide the vast majority of the 
+C/ODBC functionality. However; the Setup library is 
+needed by most folks to complete the features needed.
+
+
+======================================================

Modified: trunk/Driver/README.txt
===================================================================
--- trunk/Driver/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/Driver/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -1,12 +1,17 @@
 MySQL Connector/ODBC
-Driver
+DRIVER
 ======================================================
 
-This is the source code for the Driver and the Setup
-libraries.
+This is the source code for the Driver - the core 
+functionality provided by C/ODBC.
 
-The Driver library provides the core functionality of
-the ODBC driver while the Setup library provides the
-GUI bits.
+This source code includes;
 
++--------+-------------------------------------------+
+| DIR    | PROVIDES                                  |
++--------+-------------------------------------------+
+| Driver | Driver library                            |
+| Setup  | Setup library                             |
++--------+-------------------------------------------+
+
 ======================================================

Added: trunk/Driver/Setup/README.txt
===================================================================
--- trunk/Driver/Setup/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/Driver/Setup/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,12 @@
+MySQL Connector/ODBC
+SETUP (library)
+======================================================
+
+This is the source code for the Setup library.
+
+The Setup library provides GUI bits for the Driver. 
+The GUI bits could be provided in the Driver itself or
+a separate library. We choose the latter method.
+
+
+======================================================

Added: trunk/SDK/C/README.txt
===================================================================
--- trunk/SDK/C/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/SDK/C/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,8 @@
+MySQL Connector/ODBC
+C
+======================================================
+
+This is the source code for the C portability and 
+convenience library.
+
+======================================================

Added: trunk/SDK/Dbg/README.txt
===================================================================
--- trunk/SDK/Dbg/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/SDK/Dbg/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,10 @@
+MySQL Connector/ODBC
+Dbg
+======================================================
+
+This is the source code for the Dbg library. This 
+library provides a means to produce debug/log/trace 
+output such as entering and leaving functions in a way
+which optimally suits our needs.
+
+======================================================

Added: trunk/SDK/Installer/README.txt
===================================================================
--- trunk/SDK/Installer/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/SDK/Installer/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,9 @@
+MySQL Connector/ODBC
+INSTALLER
+======================================================
+
+This is the source code for the Installer library. This 
+library provides a portable, convenient, means to 
+read/write ODBC system. 
+
+======================================================

Added: trunk/SDK/MYSQLPlus/README.txt
===================================================================
--- trunk/SDK/MYSQLPlus/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/SDK/MYSQLPlus/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,15 @@
+MySQL Connector/ODBC
+MYSQLPlus
+======================================================
+
+This is the source code for the MYSQLPlus library. This 
+library provides an ODBC friendly C++ wrapper to the 
+MySQL C-API. The C/ODBC driver defers most of its work 
+to this library subsequently - a C/ODBC driver 
+developer spends most of his/her development time in 
+here.
+
+This library will be of interest to C++ application 
+developers needing to access MySQL data sources.
+
+======================================================

Added: trunk/SDK/ODBCPlus/README.txt
===================================================================
--- trunk/SDK/ODBCPlus/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/SDK/ODBCPlus/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,13 @@
+MySQL Connector/ODBC
+ODBCPlus
+======================================================
+
+This is the source code for the ODBCPlus library. This 
+library provides a very thin C++ wrapper to the ODBC 
+CLI.
+
+This library will be of interest to C++ application 
+developers needing to access data sources from 
+different vendors.
+
+======================================================

Added: trunk/SDK/ODBCPlusQt/README.txt
===================================================================
--- trunk/SDK/ODBCPlusQt/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/SDK/ODBCPlusQt/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,14 @@
+MySQL Connector/ODBC
+ODBCPlusQt
+======================================================
+
+This is the source code for the ODBCPlusQt library. 
+This library provides a very thin Qt/C++ wrapper to the 
+ODBC CLI.
+
+This library will be of interest to Qt/C++ application 
+developers needing to access data sources from 
+different vendors and who (perhaps because of licensing
+issues or code size) do not want to use Qt's SQL module.
+
+======================================================

Modified: trunk/SDK/README.txt
===================================================================
--- trunk/SDK/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/SDK/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -11,7 +11,7 @@
 +-----------+-------------------------------------------+
 | DIR       | PROVIDES (cross-platform)                 |
 +-----------+-------------------------------------------+
-| C         | C portability/convenience                 | 
+| C         | C portability/convenience                 |
 | Dgb       | supporting code for trace/log/dbg         |
 | Tst       | ODBC CLI wrappers for testing code        |
 | Installer | ODBC system info interface                |

Added: trunk/SDK/Tst/README.txt
===================================================================
--- trunk/SDK/Tst/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/SDK/Tst/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,12 @@
+MySQL Connector/ODBC
+TST
+======================================================
+
+This is the source code for the Tst library. This 
+library provides ODBC CLI wrappers which sanity check
+the call and return value.
+
+This is useful for those testing code using the ODBC 
+CLI.
+
+======================================================

Added: trunk/Tools/Browser/README.txt
===================================================================
--- trunk/Tools/Browser/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/Tools/Browser/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,11 @@
+MySQL Connector/ODBC
+BROWSER
+======================================================
+
+This is the source code for the MYODBCBrowser 
+GUI tool.
+
+This tool can be used to browse ODBC system information
+and data from data sources.
+
+======================================================

Added: trunk/Tools/Installer/README.txt
===================================================================
--- trunk/Tools/Installer/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/Tools/Installer/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,21 @@
+MySQL Connector/ODBC
+INSTALLER
+======================================================
+
+This is the source code for the MYODBCInstaller 
+command-line tool.
+
+This tool can be used to read/write ODBC system 
+information such as;
+
+1. register a driver
+2. deregister a driver
+3. create a Data Source Name (DSN)
+4. edit a DSN
+5. remove a DSN
+
+This can be a useful tool for the driver developer and
+is not likely to be of much interest to ODBC 
+application developers nor end Users.
+
+======================================================

Added: trunk/Tools/README.txt
===================================================================
--- trunk/Tools/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/Tools/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,24 @@
+MySQL Connector/ODBC
+TOOLS
+======================================================
+
+This is the source code for some command-line and
+GUI applications which may be useful to an ODBC 
+applications developer, driver developer - and even a
+regular User.
+
+
+This includes;
+
++-----------+-------------------------------------------+
+| DIR       | PROVIDES (cross-platform)                 |
+|           |        CL  = command-line                 |
+|           |        GUI = graphical                    |
++-----------+-------------------------------------------+
+| Installer | Interface to Installer library (CL)       |
+| Shell     | Interface to ODBC CLI (drv or DM) (CL)    |
+| Browser   | Browser ODBC (drv's & Data Sources) (GUI) |
+| dltest    | Test load share lib & symbol (CL)         |
++-----------+-------------------------------------------+
+
+======================================================

Added: trunk/Tools/Shell/README.txt
===================================================================
--- trunk/Tools/Shell/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/Tools/Shell/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,13 @@
+MySQL Connector/ODBC
+SHELL
+======================================================
+
+This is the source code for the MYODBCShell 
+command-line tool.
+
+This tool can be used to interact with ODBC from the
+command-line in an interactive or batch mode.
+
+MYODBCShell can be linked to a Driver Manager (DM) or
+directly to the Driver. 
+======================================================

Added: trunk/Tools/dltest/README.txt
===================================================================
--- trunk/Tools/dltest/README.txt	2006-08-29 18:28:15 UTC (rev 496)
+++ trunk/Tools/dltest/README.txt	2006-08-29 21:34:35 UTC (rev 497)
@@ -0,0 +1,15 @@
+MySQL Connector/ODBC
+DLTEST
+======================================================
+
+This is the source code for the dltest command-line 
+tool.
+
+This tool can be used to load a dynamic library into
+memory and, optionally, lookup a given symbol.
+
+This can be a useful tool for ensuring that all 
+library dependencies are met - this can be during the
+build or at run-time.
+
+======================================================

Thread
Connector/ODBC 5 commit: r497 - in trunk: Driver Driver/Driver Driver/Setup SDK SDK/C SDK/Dbg SDK/Installer SDK/MYSQLPlus SDK/ODBCPlus SDK/ODBCPlusQt ...pharvey29 Aug