This HTML5 document contains 23 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

PrefixNamespace IRI
n18http://localhost:8890/dataspace/services/wiki/
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
oplhttp://www.openlinksw.com/schema/attribution#
n13http://localhost:8890/dataspace/iodbc/wiki/iodbcWiki/MySQL2ODBC/sioc.
dchttp://purl.org/dc/elements/1.1/
n7http://localhost:8890/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n17http://rdfs.org/sioc/services#
siocthttp://rdfs.org/sioc/types#
n2http://localhost:8890/dataspace/iodbc/wiki/iodbcWiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n10http://localhost:8890/dataspace/person/dav#
n5http://sourceforge.net/cvs/?group_id=
n14http://localhost:8890/dataspace/%28NULL%29/wiki/iodbcWiki/
xsdhhttp://www.w3.org/2001/XMLSchema#
n4http://localhost:8890/dataspace/iodbc/wiki/
siochttp://rdfs.org/sioc/ns#
Subject Item
n2:MySQL2ODBC
rdf:type
sioct:Comment atom:Entry
dcterms:created
2016-09-14T12:28:33.630858
dcterms:modified
2016-09-14T12:28:33.630858
rdfs:label
MySQL2ODBC
foaf:maker
n10:this
n17:has_services
n18:item
dc:title
MySQL2ODBC
sioc:link
n2:MySQL2ODBC
sioc:id
3dc178f4f949d164f57a97216ff3e4e9
opl:isDescribedUsing
n13:rdf
sioc:links_to
n5:90494 n14:MySQL n14:OpenLink
sioc:has_creator
n7:this
sioc:has_container
n4:iodbcWiki
atom:source
n4:iodbcWiki
atom:title
MySQL2ODBC
atom:author
n10:this
atom:published
2016-09-14T12:28:33Z
atom:updated
2016-09-14T12:28:33Z
sioc:content
---+ MySQL-to-ODBC Gateway %TOC% ---++ Introduction ---+++ What The MySQL-ODBC SDK enables you to make MySQL-specific applications database-independent without wholesale re-writes of your application code. Thus, applications that are written directly to the MySQL call level interface now end up being database independent via iODBC, and usable against any ODBC accessible database (including MySQL). ---+++ Why The Open-Source community is rapidly producing innovative applications which, in many cases, require relational database services. Traditionally and historically, the tendency has been to look to MySQL as the default relational database service for Open Source Applications (the "M" in LAMP) which is unfortunately retreogressive since the concept of database indpendence has long been addressed industry wide via APIs such as ODBC, JDBC, OLE DB, and more recently .NET. In some case the existence of these APIs has been unknown to Open Source developers prior to application development, and in other cases the complexity of a port from the MySQL API to ODBC simply too difficult. There are numerous reasons why you can't mandate MySQL or any other database engine for that matter to every potential user of an Open Source database centric application: * Compromises freedom of choice ("Freedom of Choice" is a central theme of the Open Source movement and concept) * Database vendor lock-in reduces the deployment scope of your application, and it also potentially impedes functionality growth (what happens when the underlying database lacks the functionality that you desire?) * Cost-Effectiveness is an Open Source value proposition main stay, so asking potential users to acquire yet another database (the real costs aren't $0.00 as resources will be required for administration, installation, configuration etc.) when functional ODBC accessible relational databases exist in house is simply contradictory at the very least ODBC as a concept has always been designed to be database-independent; iODBC as an Open Source project was devised to ensure platform neutrality for ODBC (just as Mono is pursuing the same goals re. .NET). When you write an application using the ODBC API database interchangeablity becomes a reality. ---+++ How does the bridge work ? PHP,Python and Perl each have MySQL-binding layers (likewise any other MySQL application), and all that you need to do is rebuild the MySQL binding layer by following the steps below: * Download a copy of the source, mysql2odbc-0.99.2.tar.gz and unpack it somewhere into your normal source repository. * Check what options `./configure' takes by running `./configure --help'. In this case, you have a choice of specifying any one of the following ODBC SDKs: * OpenLink iODBC SDK (available from OpenLink Web Site) * iODBC SDK (available from iodbc.org) * unixODBC SDK * Run ./configure with the appropriate ODBC options, and specify a --prefix of course; for example, ./configure --prefix=/usr/local/mysql2odbc --with-iodbc=/usr/local/iodbc * Assuming this completes successfully, run <verbatim> make </verbatim> and wait while it compiles * Become root and run <verbatim> make install </verbatim> This will create $PREFIX/lib/libmysqlclient.so.10.0.0 and assorted symlinks around it. * Finally, to use the mysql-odbc bridge (the component that you build with the SDK for your application), you need to tell your application to use it in preference to the normal libmysqlclient.so - normally this means you need to export LD_LIBRARY_PATH to the directory in which the library resides ($PREFIX/lib) or export LD_PRELOAD to the name of the library itself, before you run your application. * Test to see that your local iODBC or unixODBC environment is functional which implies ensuring that data access is possible via ODBC Drivers installed on the machine hosting your previously MySQL specific application. <verbatim> LD_LIBRARY_PATH=/usr/local/mysql2odbc/lib ./mtest -u dba -p dba -d "Local Virtuoso" </verbatim> This should present a very simple UI from which SQL statements may be executed - try a <verbatim> select * from sys_users </verbatim> ---++ Download The [[/downloads/mysql2odbc/mysql2odbc-0.99.2.tar.gz][current source]] of this package can be downloaded from this location, and is released under the terms of the LGPL license. ---++ Bug Fixes If you find a bug and have the know-how to fix it, please create a "diff file" using GNU's "diff", preferably with "context" (diff -c or diff -u). If the patch is small, add the patch file as an attachment to your mail if possible, otherwise tell us where we can pick it up. This will reduce the turnaround time for new updates etc. ---++ CVS Access We currently provide read-only CVS Archive access from [[http://sourceforge.net/cvs/?group_id=90494][SourceForge.net]] : <verbatim> cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/mysql2odbc login cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/mysql2odbc co mysql2odbc </verbatim> (The password is blank.) Patches and new contributions can be submitted as diffs from the current archive by: <verbatim> $ cvs add newfiles $ cvs -z3 diff -uN > diffs </verbatim> Diffs and contributions can be send to the OpenLink iODBC source archive manager at [[mailto:iodbc&#64;openlinksw.com][iodbc@openlinksw.com]] to be included the next distribution. Please provide accompanying documentation on which bugs are fixed or new features are introduced.
sioc:topic
n4:iodbcWiki