<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - ODBC</title>
        <description>Forum for MySQL Connector/ODBC driver.</description>
        <link>http://forums.mysql.com/list.php?37</link>
        <lastBuildDate>Sat, 25 May 2013 08:54:31 +0000</lastBuildDate>
        <generator>Phorum 5.2.19</generator>
        <item>
            <guid>http://forums.mysql.com/read.php?37,587285,587285#msg-587285</guid>
            <title>Connection Issue - Connector/ODBC 5.2.4: Upgrading to 5.2.5 (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,587285,587285#msg-587285</link>
            <description><![CDATA[ I've upgraded from Connector/ODBC 5.2.4 to 5.2.5 and can no longer connect to the database. A check of the ODBC error log shows that the user is not authenticating (access denied: 1045)<br />
<br />
I downgraded to 5.2.4(w) and the user authenticates.<br />
<br />
MySQL Server Version: 5.0.77<br />
<br />
ODBC Trace 5.2.4: <a href="https://gist.github.com/objnoob/c032df92832e73551581"  rel="nofollow">https://gist.github.com/objnoob/c032df92832e73551581</a><br />
ODBC Trace 5.2.5: <a href="https://gist.github.com/objnoob/49a933103158a562341a"  rel="nofollow">https://gist.github.com/objnoob/49a933103158a562341a</a><br />
<br />
When I create a System DSN using 5.2.5 and use it in lieu of a raw string it connects :\<br />
<br />
Any insight into what could be causing this would be greatly appreciated!]]></description>
            <dc:creator>Stephen Yoachum</dc:creator>
            <category>ODBC</category>
            <pubDate>Fri, 24 May 2013 18:39:08 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,586717,586717#msg-586717</guid>
            <title>Installation problem (1 reply)</title>
            <link>http://forums.mysql.com/read.php?37,586717,586717#msg-586717</link>
            <description><![CDATA[ I'm trying to install the ODBC Connector 5 so I can upload an MS Access file to MySQL. I've done this before and it worked. Now all I get is a message saying it can't connect.<br />
<br />
This installation was attempted from the ZIP version of the Connector and then this was unzipped. There should be a SETUP in the files according to the directions, but I don't see it. <br />
<br />
I also tried to install from the MSI version, but not sure how to do that. <br />
<br />
At any rate, I've put all my dialog boxes out at:<br />
<a href="http://creatingnewworlds.org/odbc_install.pdf"  rel="nofollow">http://creatingnewworlds.org/odbc_install.pdf</a><br />
<br />
I think I probably need to get stuff out of there first - old drivers are there as you can see on the driver list on the file above. <br />
<br />
Any help would be approciated. This is 2010 Access, running on Windows 7.The MySQL is version 5.0.96. The host PHPAdministrator set me to the connecting IP, 50.37.173.75.]]></description>
            <dc:creator>Carl Townsend</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 20 May 2013 11:09:59 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,586574,586574#msg-586574</guid>
            <title>Error? Cannot insert character larger than 16bits (1 reply)</title>
            <link>http://forums.mysql.com/read.php?37,586574,586574#msg-586574</link>
            <description><![CDATA[ Mysql Version:5.6.11<br />
Connector ODBC Version: 5.2.5<br />
I try to changed field to UTF16, and use connect string:<br />
DRIVER={MySQL ODBC 5.2 Unicode Driver};SERVER=127.0.0.1;DATABASE=richedb;UID=root;PASSWORD=root;OPTION=3;CharSet=utf16;<br />
when I execute:<br />
szSQL=_T(&quot;INSERT INTO test(NAME) VALUES('𢈢')&quot;);<br />
ConnectionPtr-&gt;Execute((_bstr_t)szSQL, &amp;RecordsAffected, adCmdText);<br />
Is's no respond.<br />
The character '𢈢'(UTF16 byte:0xD848DE22)<br />
any help me!]]></description>
            <dc:creator>freefly pan</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 20 May 2013 11:11:21 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,586349,586349#msg-586349</guid>
            <title>ODBC Connection Pooling 3.51 vs 5.1 (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,586349,586349#msg-586349</link>
            <description><![CDATA[ Hi,<br />
<br />
The default connection pooling seems to be on for 3.51, and off for 5.1 (at least this is what odbcad32 is telling me).<br />
<br />
If so, is there any reason why the default is off in 5.1?<br />
<br />
What are the implications of switching it on on a live system (e.g. will I need to restart web servers etc.)?<br />
<br />
Thanks for any help.]]></description>
            <dc:creator>Simon Gregory</dc:creator>
            <category>ODBC</category>
            <pubDate>Wed, 15 May 2013 09:29:41 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,586266,586266#msg-586266</guid>
            <title>How to use UTF8mb4 with ODBC (1 reply)</title>
            <link>http://forums.mysql.com/read.php?37,586266,586266#msg-586266</link>
            <description><![CDATA[ I create a table with charset utf8mb4:<br />
CREATE TABLE sakila.test(ID INT NOT NULL AUTO_INCREMENT,Name VARCHAR(512),KEY(ID))CHARSET=utf8mb4;<br />
<br />
then I creat ODBC DSN with MySQL ODBC 5.2w Driver named &quot;EDB&quot; and set character set utf8mb4 in details.<br />
<br />
now, in my project, I try to insert a word use MFC:<br />
<br />
CString strSql = _T(&quot;insert into test(name) values('𢈢')&quot;);<br />
CDatabase db;<br />
db.Open(_T(&quot;EDB&quot;));<br />
db.ExecuteSQL(strSql);//error, no respond<br />
db.Close();<br />
<br />
If the values is character in 0x0000-0xffff, it`s work.<br />
<br />
How to use UTF8mb4 with ODBC.]]></description>
            <dc:creator>freefly pan</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 20 May 2013 11:25:37 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,586132,586132#msg-586132</guid>
            <title>mysql can not to insert unicode16 uncommon word (1 reply)</title>
            <link>http://forums.mysql.com/read.php?37,586132,586132#msg-586132</link>
            <description><![CDATA[ connect with ODBC “DRIVER={MySQL ODBC 5.2w Driver};SERVER=%s;PORT=%d;DATABASE=%s;UID=%s;PASSWORD=%s;OPTION=3;”<br />
		szSQL.Format(_T(&quot;INSERT INTO test&quot;)<br />
			_T(&quot;(Name)&quot;)<br />
			_T(&quot;VALUES('%s')&quot;), _T(&quot;𢈢&quot;));<br />
m_Conn.pConn-&gt;Execute((_bstr_t)szSQL,  &amp;RecordsAffected, adCmdText);<br />
<br />
<br />
The program does not return，This problem has troubled me for a long time，Who can help me answer this question thanks]]></description>
            <dc:creator>mzy ma</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 20 May 2013 10:13:27 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,585467,585467#msg-585467</guid>
            <title>Use ODBC Driver version 3.51 required by Crystal Reports (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,585467,585467#msg-585467</link>
            <description><![CDATA[ In order to use Crystal Reports 11 with a hosted MySQL db, Business Objects have advised the use of the 3.51 version of the ODBC Driver.  The problem is that the 3.51 ODBC driver, out of the box, does not connect with the database (when the DSN is created, no databases are shown for selection after server,user and password data has been entered ).  So three questions:<br />
(a) is it acceptable practice still to use 3.51<br />
(b) any ideas why the 3.51 won't connect whereas 5.1 works fine - 3.5 used to work with this host, what could they have changed, are there any ODBC parameters where changing settings might solve this ?<br />
(c) any comments on MySQL and Crystal ? Crystal 11 works fine with a local install of MySQL with ODBC 5.1.<br />
Thanks.]]></description>
            <dc:creator>Peter Kaye</dc:creator>
            <category>ODBC</category>
            <pubDate>Sat, 04 May 2013 05:39:31 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,585411,585411#msg-585411</guid>
            <title>32bit ODBC driver on Windows 7 64bit not accessible (1 reply)</title>
            <link>http://forums.mysql.com/read.php?37,585411,585411#msg-585411</link>
            <description><![CDATA[ I have some software the required the 32bit MySQL ODBC driver.<br />
<br />
When I install the 32bit MySQL ODBC driver (mysql-connector-odbc-5.2.5-win32.msi) it is not available to add as new data source.<br />
<br />
Is there a way I can make this possible or am I basically sol?<br />
<br />
Any help would be appreciated.]]></description>
            <dc:creator>Peter Netterville</dc:creator>
            <category>ODBC</category>
            <pubDate>Wed, 08 May 2013 10:04:56 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,585285,585285#msg-585285</guid>
            <title>Access 2010 5.2(a) - linked table cant join to access table (2 replies)</title>
            <link>http://forums.mysql.com/read.php?37,585285,585285#msg-585285</link>
            <description><![CDATA[ I have searched for days now to find an explanation for this but come up empty handed with each search. <br />
<br />
I have been developing a solution on a PC that has the following credentials:<br />
  Win 7 (64-bit)<br />
  Access 2010 (32-bit)<br />
  Connector: mysql-connector-odbc-5.2.4-ansi-win32<br />
<br />
On this PC (PC_a) I have been able to create the linked tables, query against the linked tables to extract the data and run subsequent queries joining the data I extracted into Access tables to the linked tables.<br />
<br />
I am developing the solution for a PC that has the following credentials: <br />
  Win 7 (64-bit)<br />
  Access 2010 (32-bit)<br />
  Connector: mysql-connector-odbc-5.2.4-ansi-win32<br />
<br />
On this PC (PC_b) I can create the connection, link the tables, preview the data in the tables, query the tables to extract the data but the subsequent queries that join Access data to the linked tables gets the error, [ODBC--Call Failed] and references a &quot;Server does not support 4-byte encoded UTF8 characters&quot; statement. <br />
<br />
I have tried several attempts to including uninstalling and re-installing, installing MySQL server 5.6 and other variations and am at my wit's end. Any help or direction would be appreciated.]]></description>
            <dc:creator>David Davis</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 20 May 2013 11:32:11 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,585173,585173#msg-585173</guid>
            <title>ODBC Driver for Windows 95 ? (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,585173,585173#msg-585173</link>
            <description><![CDATA[ Hello,<br />
One of my customers (the biggest) needs to add some module to his VB6-written application under Windows 95, in aim to write some production data in his MySQL plant server (V5.1).<br />
So he asked me to do that.<br />
I answer that there is no MySQL ODBC driver for Windows95...Am I right?<br />
<br />
Is there any solution to install some old version driver that will work with MySQL Server 5.1 ?<br />
<br />
I tried to install V3.51 ODBC driver for MySQL, without success : &quot;myodbc3i.exe needs another version of windows OS. Update your windows system.&quot;<br />
<br />
Thank you in advance for your answrers..<br />
<br />
Best regards.]]></description>
            <dc:creator>Patrice ARDOUIN</dc:creator>
            <category>ODBC</category>
            <pubDate>Tue, 30 Apr 2013 09:17:40 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,584979,584979#msg-584979</guid>
            <title>Problem with MySQL ODBC  5.2a connector with Windows 8 (1 reply)</title>
            <link>http://forums.mysql.com/read.php?37,584979,584979#msg-584979</link>
            <description><![CDATA[ I have been using MySQL Connector 5.1 with Windows computers, creating linked tables from an MS Access front end to a MySQL database. The system works well for the purpose it is used.<br />
<br />
I have just using the set up with a Windows 8 computer. The MySQL connector which has been installed is 5.2a.  The MS Access front end appears to be working fine, except if a table has Chinese characters in its records - the table when opened says ODBC failed. <br />
<br />
Using the Windows 8 search feature if offers ODBC connectors for 32 and 64 bit. <br />
<br />
But I am only able to set up a DSN using the 32 bit version.<br />
<br />
I have tried to remove the connector software, but not had any success.<br />
<br />
What is the cause of the table with Chinese characters failing to open. <br />
<br />
If the solution lies in removing the 32 bit MySQL connector software and using 64 bit, how is the 32 bit version removed?<br />
<br />
Would be very grateful for any suggestions as to a solution or knowing what is causing the problem.]]></description>
            <dc:creator>R Hubbard</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 29 Apr 2013 13:33:38 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,584870,584870#msg-584870</guid>
            <title>ODBC Problem with CONCAT (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,584870,584870#msg-584870</link>
            <description><![CDATA[ Hello,<br />
<br />
i have a problem with a concat funktion:<br />
<br />
select concat(a, '-', b) from xyz....<br />
<br />
It works with odbc 3.5.11 and not with newer versions.<br />
I use the data in excel. With the newer drivers the column dissapears even i can see it in the Microsoft Query Browser.<br />
Is that a known bug or can i make some settings in the newer driver?<br />
<br />
I cannot use generally the old driver, cause some complicated querys are not editable with 3.5.11.<br />
<br />
best regards and thanks in advance]]></description>
            <dc:creator>HEIKO WIESNER</dc:creator>
            <category>ODBC</category>
            <pubDate>Fri, 26 Apr 2013 12:25:56 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,584153,584153#msg-584153</guid>
            <title>Compiling ODBC driver on AIX 7.1 (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,584153,584153#msg-584153</link>
            <description><![CDATA[ Hi,<br />
I have successfully built the MySQL ODBC driver v5.2.4 on AIX 7.1 along with it's dependencies in 32 bit mode. The problem is that both iODBC and unixODBC are hanging during the driver loading phase. <br />
<br />
I have written a test program that is able to connect to the database using the standard MySQ client API and perform queries so at least I know the client library is OK.<br />
<br />
Has anybody succeeded in getting this driver working on AIX 6 or 7?<br />
<br />
Cheers<br />
K]]></description>
            <dc:creator>Kristján Rúnarsson</dc:creator>
            <category>ODBC</category>
            <pubDate>Wed, 17 Apr 2013 11:45:05 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,583774,583774#msg-583774</guid>
            <title>ODBCMySQL Network (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,583774,583774#msg-583774</link>
            <description><![CDATA[ Hi,<br />
<br />
I am trying to set up an ODBC connection to query a MySQL Database using MS Query and complete a report using VBA, how do I go about setting up my ODBC connection, the issue I have is that the MySQL database isnt stored on a network its stored on a local drive (Z:\) rtaher than a server<br />
<br />
Is there am alternative way to query my database via Excel/MsQuery?<br />
<br />
Many Thanks,<br />
Antonio]]></description>
            <dc:creator>Antonio De Paolo</dc:creator>
            <category>ODBC</category>
            <pubDate>Fri, 12 Apr 2013 09:57:58 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,582770,582770#msg-582770</guid>
            <title>Need ODBC connector on AIX 6.1 that works with DataStage 8.7 and MySQL Community Edition (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,582770,582770#msg-582770</link>
            <description><![CDATA[ Hi,<br />
	As we all know, the ODBC driver supplied by IBM only works with MySQL Enterprise Edition. We visited the MySQL website but couldn't locate a driver for AIX. <br />
<br />
Our server admin has procured a customized version, which when used on AIX 6.1 with DataStage 8.7 throws the following error:<br />
<br />
DSD.BCIOpenR call to function SQLTables failed.<br />
SQLSTATE=S1004, DBMS.CODE=0<br />
[DataStage][SQL Client]An unsupported SQL data type was encountered<br />
<br />
Could someone help us to find the right ODBC connector for MySQL Community Edition that works on AIX and is compatible with DataStage 8.7?<br />
<br />
If one doesn't exist, kindly provide us with a step by step guide that will help us to compile from source on AIX 6.1.]]></description>
            <dc:creator>Trinanjan Bhanja</dc:creator>
            <category>ODBC</category>
            <pubDate>Sun, 31 Mar 2013 14:28:12 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,582525,582525#msg-582525</guid>
            <title>odbc 5.2a or odbc 5.2w? (1 reply)</title>
            <link>http://forums.mysql.com/read.php?37,582525,582525#msg-582525</link>
            <description><![CDATA[ Can anyone tell me whats the difference between odbc 5.2a or odbc 5.2w and how to make sure a query in excel can run on both? Or of course were to find the info<br />
Thanks]]></description>
            <dc:creator>Jules Witte</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 20 May 2013 09:54:12 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,582498,582498#msg-582498</guid>
            <title>Can't install ODBC Drivers (1 reply)</title>
            <link>http://forums.mysql.com/read.php?37,582498,582498#msg-582498</link>
            <description><![CDATA[ I have downloaded the SQL ODBC connecter driver for Mac, but can't install it.  The error message I get is: &quot;MySQL Connector ODBC 5.2.pkg&quot; can't be opened because it is from an unidentified developer.  Your security preferences allow installation of only apps form the Mac App Store and identified developers.<br />
<br />
Can anyone tell me how to change my security preferences?  I can't seem to find it!<br />
<br />
Thanks in advance.  Please email me directly and post to this forum.<br />
<br />
Linda<br />
-------<br />
<a href="mailto:&#76;&#105;&#110;&#100;&#97;&#64;&#99;&#111;&#109;&#112;&#117;&#45;&#98;&#111;&#111;&#107;&#115;&#46;&#99;&#111;&#109;">&#76;&#105;&#110;&#100;&#97;&#64;&#99;&#111;&#109;&#112;&#117;&#45;&#98;&#111;&#111;&#107;&#115;&#46;&#99;&#111;&#109;</a>]]></description>
            <dc:creator>Linda Carter</dc:creator>
            <category>ODBC</category>
            <pubDate>Tue, 09 Apr 2013 17:05:10 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,582363,582363#msg-582363</guid>
            <title>MySQL/ODBC 5.2.4 crashes with Foxpro 9 Remote Views and CursorAdapters (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,582363,582363#msg-582363</link>
            <description><![CDATA[ Hi Community, <br />
<br />
 I tried out the MySQL ODBC client Version 5.2 with a Visual Foxpro 9 based application. Using a CursorAdapter crashes the whole application (no specific error message, just a GPF) on the &quot;cursorfill&quot; method of the CursorAdapter. The same application works fine and stable with MySQL ODBC 5.1 (any version) connecting to the same server. Also SQL-passthrough commands (SQLEXEC) seem to work without problems. I tried out several options including the new &quot;no_ssps&quot;-option without effect. <br />
 There must be some behaviour change in the ODBC 5.2 Client that leads to the crash. <br />
<br />
 Thank you very much for any suggestions! <br />
<br />
 PS: The Crash occurs with both client Versions 5.2a and 5.2w <br />
<br />
 Environment: <br />
 * MySQL Community Edition 5.6 (tried 5.1,5.5 also) 64Bit <br />
 * Windows 7 64Bit <br />
 * MySQL ODBC 5.2.4 32Bit <br />
 * VFP 9.0 SP1 Build 7423 <br />
<br />
<br />
<br />
 Kind regards, <br />
 Gerold]]></description>
            <dc:creator>Gerold Lübben</dc:creator>
            <category>ODBC</category>
            <pubDate>Tue, 26 Mar 2013 10:30:19 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,582362,582362#msg-582362</guid>
            <title>Getting data from Access DB to MySQL DB (1 reply)</title>
            <link>http://forums.mysql.com/read.php?37,582362,582362#msg-582362</link>
            <description><![CDATA[ How can I access tables in Access from MySQL with ODBC.<br />
(I'm NOT searching the other way round, I don't want a table in Access linking to a MySQL table)<br />
<br />
Accessing MySQL tables in Access is very easy, so is the other way round also possible?<br />
<br />
<br />
The data in Access changes daily, so only exporting the tables to MySQL is no option, i need to synchronize the data somehow. Changes in Access need to be transfered also to the MySQL DB.]]></description>
            <dc:creator>Annika Korz</dc:creator>
            <category>ODBC</category>
            <pubDate>Tue, 26 Mar 2013 14:41:10 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,581875,581875#msg-581875</guid>
            <title>Prepared Statements (2 replies)</title>
            <link>http://forums.mysql.com/read.php?37,581875,581875#msg-581875</link>
            <description><![CDATA[ I am using the 5.2.4 ODBC driver and 5.6.  My application uses prepared statements extensively.  It caches them and re-executes as needed.  What I have found is that the ODBC driver will create a prepared statement and execute it the first time. But subsequent executions will do direct execution of the statement with literals.  Why would the ODBC driver not re-execute the prepared statement?<br />
<br />
I was looking at this because I found a problem using prepared statements with the C/C++ APIs. Certain SQL with VIEWs cause the server to crash when they are executed more than once.  It does not happen when using ODBC.  Looks that is because it is only executes a prepared statement once.]]></description>
            <dc:creator>Tim Besser</dc:creator>
            <category>ODBC</category>
            <pubDate>Thu, 28 Mar 2013 14:03:49 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,581818,581818#msg-581818</guid>
            <title>Connecting to MySQL using ADO with VBA for Excel (1 reply)</title>
            <link>http://forums.mysql.com/read.php?37,581818,581818#msg-581818</link>
            <description><![CDATA[ I'm having trouble with connecting to MySQL from Excel. I have installed MySQL on a machine and I am using Wokbench as a front-end. I went to the ODBC Data source administrator screen and in the list of drivers it shows the MySQL ODBC 5.2w Driver. Within MySQL, I have a sample schema called sakila.<br />
<br />
How do I get a standard connection string to work using an ADODB.Connection on the same machine? I want to first get the connection running on the same machine, and then try connecting to MySQL from Excel on another machine in the network. I have a Uid and Pwd working from Workbench, and the current string I tried is<br />
cn.Open &quot;DRIVER={MySQL ODBC 5.2w Driver};UID=adasgupta;PWD=mypwd;Database=Sakila;&quot;<br />
For the post, I've just replaced the actual password here with mypwd. When I run it, I get an error that says data source name not found and no default driver specified. I've referenced the Activex Data Objects 6.0 library in VBA.]]></description>
            <dc:creator>Arijit Dasgupta</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 20 May 2013 10:36:17 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,581488,581488#msg-581488</guid>
            <title>Mac OS X 10.8 ODBC Connector (2 replies)</title>
            <link>http://forums.mysql.com/read.php?37,581488,581488#msg-581488</link>
            <description><![CDATA[ Hello,<br />
<br />
I'm trying to establish a connection to an online MySQL database. I have downloaded the latest connector from the web page, configured the DSN as recommended, but still not able to establish a successful connection.<br />
<br />
When I take a look at the ODBC connector I don't find any connector for Mac OS X 10.8. The last version of OS X supported seems to be 10.7. Does this connector actually works with 10.8? Did anyone try it?<br />
<br />
Is the first time I post here so if you need more information or any log files please tell me and I will provide them asap.<br />
<br />
Thanks in advance!<br />
<br />
Best Regards,<br />
<br />
Rodrigo]]></description>
            <dc:creator>Rodrigo Alvez</dc:creator>
            <category>ODBC</category>
            <pubDate>Sun, 05 May 2013 23:17:54 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,581419,581419#msg-581419</guid>
            <title>Connecting from an Open Office client (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,581419,581419#msg-581419</link>
            <description><![CDATA[ In the past, some Open Office database users, when they wanted to go beyond using the embedded engine, tried connecting to MySQL servers with the ODBC connector.<br />
<br />
Open Office now has it's own, native, MySQL connector... it is a normal &quot;extension&quot;.<br />
<br />
For help with getting MySQL (server) and Open Office &quot;Base&quot; (dreadful name!) (client) &quot;playing nicely&quot; together, see....<br />
<br />
<a href="http://sheepdogguides.com/srv/s0MySqlDoInst.htm"  rel="nofollow">http://sheepdogguides.com/srv/s0MySqlDoInst.htm</a>]]></description>
            <dc:creator>Sheep dog</dc:creator>
            <category>ODBC</category>
            <pubDate>Fri, 15 Mar 2013 10:16:30 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,581165,581165#msg-581165</guid>
            <title>ODBC Connector can't connect with Excel - the specified DSN contains an architecture mismatch (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,581165,581165#msg-581165</link>
            <description><![CDATA[ Scenario:<br />
ODBC Connector 5.2<br />
Excel 2010<br />
Win7 (Ent) 64<br />
<br />
I can setup the connector with no problem (tests fine).  But when I goto Excel, to connect to other ODBC connections, I get the following message:<br />
<br />
the specified DSN contains an architecture mismatch<br />
<br />
I have read where I should try the following:<br />
<br />
1.  Load 32bit version, then overlay with 64bit version (results in a catastrophic error).<br />
2.  Use just the 32bit version, the driver isn't even recognized.<br />
3.  Tried using the 5.1.9 build, the same initial issue.<br />
<br />
This screams a interaction issue with Excel, but I'm at my wits end on what to try next.  I'm sure somebody has been successful with this config before.  SO if you would be kind enough to share your recipe.  I would be most beholding to you.<br />
<br />
THanks,<br />
D-]]></description>
            <dc:creator>Don Potter</dc:creator>
            <category>ODBC</category>
            <pubDate>Tue, 12 Mar 2013 19:01:02 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,580577,580577#msg-580577</guid>
            <title>architecture mismatch (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,580577,580577#msg-580577</link>
            <description><![CDATA[ I am receiving this error.  All current drivers are installed.  It happens on all MS Office products tested (Excel, Word - both 2010 versions).<br />
<br />
Thanks all<br />
<br />
the specified DSN contains an architecture mismatch between the driver and application<br />
<br />
Setting up the data source is successful.  Only happens when in the application and trying to add a new source in mailings in Word for example.]]></description>
            <dc:creator>David Potter</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 04 Mar 2013 23:54:31 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,580081,580081#msg-580081</guid>
            <title>Ever-changing connection string (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,580081,580081#msg-580081</link>
            <description><![CDATA[ Is there some benefit to constantly changing the connection string to access the ODBC driver?<br />
<br />
I am often having to recompile my source code due to the ever-changing nature of the ODBC driver= string.  A couple months ago it was suffixed with &quot;CE&quot;, then the suffix became &quot;W&quot;, now it is &quot;A&quot;.  As the string also contains the a portion of the version number (&quot;5.2&quot;), it is obvious that the string will never be static. I've now decided to make my programs read an external flat file, and to obtain the driver name from it. I'll then at least be able to avoid the frequent recompiles.<br />
<br />
Programmatically ensuring end-users are running the current version is also a little screwy.  The file &quot;myodbc5w.dll&quot; is older than &quot;myodbc5a.dll&quot;, so the naming convention does not seem to indicate which is the current file. Yet, if I search the install directory using a wildcard for the suffix, in order to check file version numbers, i'll gets hits on both a &quot;myodbc5a.dll&quot; and a &quot;myodbc5S.dll&quot;.  Granted, they should both return the same version number, but if the core library has a variable suffix, like &quot;myodbc5w.dll&quot; or &quot;myodbc5a.dll&quot;, why is there a library with a different purpose following the same naming convention?<br />
<br />
Wouldn't it create less confusion to give the setup library a more unique name, rather than making it look like a version of the core library?  <br />
<br />
Is there a reason not to maintain a more static connection string such as &quot;Driver={MySQL ODBC5 Driver};&quot; and eliminate the need for constant program maintenance?<br />
<br />
It's been a long day here, I hope I don't come across as grumpy. <br />
Any replies are greatly appreciated.]]></description>
            <dc:creator>Paul Williams</dc:creator>
            <category>ODBC</category>
            <pubDate>Tue, 26 Feb 2013 21:19:12 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,580028,580028#msg-580028</guid>
            <title>Strange result when using ODBC (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,580028,580028#msg-580028</link>
            <description><![CDATA[ Hello,<br />
<br />
I have a intranetsite running on PHP &amp; Mysql. &quot;Live&quot; I've got 1118 records in my database (PHPmanager).But when I make a connection throught ODBC to do a mailmerge only 1113 records show up. The last 5 do not for some reason...<br />
I presume that there is no some kind of limit when using ODBC ?<br />
<br />
This setup is working almost 3 years now and nothing has been changed ?<br />
<br />
Perhaps anyone has had this kind of behavior before ?<br />
<br />
Any help appreciated !<br />
<br />
Stefan]]></description>
            <dc:creator>Stefan Fets</dc:creator>
            <category>ODBC</category>
            <pubDate>Tue, 26 Feb 2013 12:07:09 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,579996,579996#msg-579996</guid>
            <title>Unable to build ODBC connector on Visual Studio 2012 (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,579996,579996#msg-579996</link>
            <description><![CDATA[ I downloaded the ODBC source from <a href="http://dev.mysql.com/downloads/connector/odbc/#downloads"  rel="nofollow">http://dev.mysql.com/downloads/connector/odbc/#downloads</a><br />
<br />
Inside that there is a build.win which says that one needs to install CMake, setup an environment variable and fire up cmake which generates the native makefiles (or .sln file for VS2012).<br />
<br />
This doesn't work. The error is<br />
<br />
C:\projects\MySQL.Connectors\mysql-connector-odbc-5.2.4-src&gt;  cmake -G &quot;Visual Studio 11 Win64&quot;<br />
-- The C compiler identification is MSVC 17.0.51106.1<br />
-- The CXX compiler identification is MSVC 17.0.51106.1<br />
-- Check for working C compiler using: Visual Studio 11 Win64<br />
-- Check for working C compiler using: Visual Studio 11 Win64 -- broken<br />
CMake Error at C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake:61 (message):<br />
  The C compiler &quot;C:/Program Files (x86)/Microsoft Visual Studio<br />
  11.0/VC/bin/x86_amd64/cl.exe&quot; is not able to compile a simple test program.<br />
<br />
  It fails with the following output:<br />
<br />
   Change Dir: C:/projects/MySQL.Connectors/mysql-connector-odbc-5.2.4-src/CMakeFiles/CMakeTmp<br />
<br />
  Run Build Command:C:\PROGRA~2\MICROS~1.0\Common7\IDE\devenv.com<br />
  CMAKE_TRY_COMPILE.sln /build Debug /project cmTryCompileExec3889604268<br />
<br />
<br />
Question: How does one build the ODBC driver on Windows? I'm aware of the .NET connector - we're targetting the ODBC driver specifically. Thanks]]></description>
            <dc:creator>Sid Shetye</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 25 Feb 2013 23:02:40 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,579576,579576#msg-579576</guid>
            <title>ODBC driver requirements for connecting to 5.6 server (4 replies)</title>
            <link>http://forums.mysql.com/read.php?37,579576,579576#msg-579576</link>
            <description><![CDATA[ Hi,<br />
<br />
I'm sorry if there is an information about this already on this forum. I wasn't able to find one.<br />
I have a mySQL 5.6.10 CE server running and trying to connect with an ODBC connector 5.1.6 from an IBM p-Series with AIX 6.1. I could connect a 5.1.45 CE server without any problems before.<br />
I did the tests with mysql_client_test, but these fail right after the connect, which was successful. I added the output from mysql_client_test below.<br />
I'm not so experienced with mySQL and trying to get close to the error step by step.<br />
<br />
So my first question is: Is it possible to connect with the ODBC 5.1.6 to the 5.6.10 server?<br />
<br />
If it is necessary to use a newer ODBC connector version, is someone aware of compiled versions for AIX?<br />
<br />
Thanks in advance!<br />
<br />
Regards,<br />
Oliver<br />
<br />
=======================================================<br />
<br />
Output from mysql_client_text (I run the checks as dba. It also creates the client_test_db, but empty):<br />
<br />
#####################################<br />
client_connect<br />
#####################################<br />
<br />
 Establishing a connection to 'xxxxxxxx' ...OK<br />
Connected to MySQL server version: 5.6.10-log (50610)<br />
<br />
 Creating a test database 'client_test_db' ...mysql_client_test.c:248: check failed: 'row']]></description>
            <dc:creator>Oliver Brehm</dc:creator>
            <category>ODBC</category>
            <pubDate>Fri, 22 Feb 2013 12:20:23 +0000</pubDate>
        </item>
        <item>
            <guid>http://forums.mysql.com/read.php?37,579399,579399#msg-579399</guid>
            <title>Attempted to read or write protected memory in ODBC connector (no replies)</title>
            <link>http://forums.mysql.com/read.php?37,579399,579399#msg-579399</link>
            <description><![CDATA[ Hi, <br />
<br />
I try to connect to MySQL 5.6 server through MySQL ODBC connector 5.2(w) from ADO.NET. I write a simple code in C#.<br />
<br />
static void Main(string[] args) {<br />
 using (OdbcConnection connection = new OdbcConnection(&quot;DSN=MYDSN&quot;)){<br />
  connection.Open();<br />
  DataTable tables = connection.GetSchema(&quot;Tables&quot;);<br />
  DataTable datatypes = connection.GetSchema(&quot;DataTypes&quot;);<br />
  }<br />
}<br />
<br />
connection.GetSchema(&quot;DataTypes&quot;) method throw an exception:<br />
System.AccessViolationException<br />
Attempted to read or write protected memory. This is often an indication that other memory is corrupt.<br />
<br />
Stack Trace<br />
<br />
   at System.Data.Common.UnsafeNativeMethods.SQLFreeStmt(OdbcStatementHandle StatementHandle, STMT Option)<br />
   at System.Data.Odbc.OdbcStatementHandle.FreeStatement(STMT stmt)<br />
   at System.Data.Odbc.CMDWrapper.FreeStatementHandle(STMT stmt)<br />
   at System.Data.Odbc.OdbcDataReader.Close(Boolean disposing)<br />
   at System.Data.Odbc.OdbcDataReader.Dispose(Boolean disposing)<br />
   at System.Data.Common.DbDataReader.Dispose()<br />
   at System.Data.Odbc.OdbcMetaDataFactory.GetDataTypesCollection(String[] restrictions, OdbcConnection connection)<br />
   at System.Data.Odbc.OdbcMetaDataFactory.PrepareCollection(String collectionName, String[] restrictions, DbConnection connection)<br />
   at System.Data.ProviderBase.DbMetaDataFactory.GetSchema(DbConnection connection, String collectionName, String[] restrictions)<br />
   at System.Data.ProviderBase.DbConnectionInternal.GetSchema(DbConnectionFactory factory, DbConnectionPoolGroup poolGroup, DbConnection outerConnection, String collectionName, String[] restrictions)<br />
   at System.Data.Odbc.OdbcConnection.GetSchema(String collectionName, String[] restrictionValues)<br />
   at System.Data.Odbc.OdbcConnection.GetSchema(String collectionName)<br />
   at ConsoleApplication3.Program.Main(String[] args)<br />
<br />
ODBC connector architecture is x86. <br />
<br />
Anyone know how to fix this problem?<br />
<br />
Thanks!]]></description>
            <dc:creator>Pavel M</dc:creator>
            <category>ODBC</category>
            <pubDate>Mon, 18 Feb 2013 16:20:55 +0000</pubDate>
        </item>
    </channel>
</rss>
