iOS Open Database Connectivity SDK |
![]() |
curl http://..(link provided after purchase)..| tar xvj
cd ODBCNET-iOS-131
tar xvf odbcApp.tar
open odbcApp/odbcApp.xcodeproj
#
cd ODBCNET-iOS-131
tar xvf odbcApp.tar
open odbcApp/odbcApp.xcodeproj
#
The included readme.txt gives an overview of the release.
New in v1.2: ability to restrict database connection to only-WiFi or only-Cellular, support for XCode 4.2/iOS 5
New in v1.3: retrieve result sets as an NSArray of rows (that are each an NSDictionary of columns), even easier to use
SDK Manifest
- readme.txt
- odbcApp/ demo application
- Common.h convenience macros used by odbcApp demo (not SDK)
- Classes/
- odbcAppDelegate.h[.m] The Apple iOS application delegate
- View Controllers/
- ODBCRouterList.h[.m][.xib] List known ODBC Routers
- ORPrompt.h[.m][.xib] Prompt for or Edit definition of an ODBC Router
- ORDataSourcesList.h[.m][.xib] List Data Sources on an ODBC Router
- SQLQueryInteractive.h[.m][.xib] Prompt for and Run an ad-hoc SQL query
- SQLTablesList.h[.m][.xib] List of Tables in a Data Source on an ODBC Router
- SQLColumnsList.h[.m][.xib] List Columns of a Table in a Data Source on an ODBC Router
- SQLRowsList.h[.m][.xib] List Rows of a Table in a Data Source on an ODBC Router
- Other Sources/
- License.rtf Software License Agreement
- ODBC-for-iOS/ SDK for use while going back and forth between Simulator/Device
- libodbcnet.a Royalty-free ODBC runtime for i386 Simulator, ARM v6/v7 Devices running iOS 3.1.2+
- ODBCcontext.h[.m] represents a server data source, primarily what your app uses
- ODBCcolumnDescriptor.h[.m] represents a description of a column in an ODBCcontext's result set
- ODBCRouter.h[.m] behind-the-scenes singleton object that performs all of the heavy lifting for you
- UIDevice-Connection.h[.m] category extending Apple iOS UIDevice with network connectivity detection
- macSQL.h Linux/Mac open source version of Windows SQL.H (not written by AugSoft)
- macSQLEXT.h Linux/Mac open source version of Windows SQLEXT.H (not written by AugSoft)
- macSQLTYPES.h Linux/Mac open source version of Windows SQLTYPES.H (not written by AugSoft)
- UITableViewConrollerCache.h[.m] allows caching of Apple iOS UITableViewController
- UIViewControllerCache.h[.m] allows caching of Apple iOS UIViewController
