Quantcast
Channel: MySQL Forums - Connector/ODBC
Viewing all 1136 articles
Browse latest View live

ODBC data reader : Unable to read multi records set (no replies)

$
0
0
Hello

I am facing issues in retrieving multiple record set using ODBC data reader from MYSQL.

I have created a store procedure and it has 3 select statements, now when i try to call this on query analyzer i can find the output tables but when i try calling the same from C# code i was able to get the first record set but not the rest of the things

when i do dr.NextResult() after this can able to do dr.read()

can any one help on this .

Manoj

Anyone using Connect/ODBC on the Mac? (no replies)

$
0
0
I'm trying to get an ODBC connection, *any* connection, to run on my MacAir. Sooner or later I want it to connect to a Firebird database on a PC, but for now I just want to test ODBC.

So I downloaded the Community server for the Mac, installed it, and started it up. I created a DB called "test" (how original) and then loaded it up with the employee DB from some SQL I found somewhere. Running queries in "mysql" works fine.

So then I installed the Connect/ODBC for my Mac, the 64-bit version from the DMG. I then installed the driver in ODBC Administrator (it did not, as it claimed, install itself there automatically, nor did it install the setup libraries).

I then fired up Excel and started the process of connecting to the DB. This, in turn, fires up MS Query where a Test button appears (why there isn't one in ODBC Admin I'll never know...). Clicking that returns...

Specified driver could not be loaded

followed by...

(snipped) ...mach-o, but wrong architecture


This appears to be a reference to a 32/64 bit issue, but I'm not entirely sure that's true.

So, is anyone running queries from Excel on any recent Mac?

MySQL driver does not appear in Data Sources (no replies)

$
0
0
I installed the MySQL ODBC Connector driver, version 5.1.11, the 32 bit version for Windows. My OS is Windows XP.

It appeared to install properly, it is in the registry, but it does not show up in the list of ODBC drivers that you see when you go into Control Panel --> Adminstrative Tools --> Data Sources (ODBC).

So I cannot select it to add a new data source. Any ideas?

Where can I download the MySQL Connector/ODBC 5.1.10? (no replies)

64 bit vs. 32 bit (no replies)

$
0
0
I have a 32 bit windows app that uses the 3.51 driver. This works well. I have been asked to support this app in a 64 bit environment and am feeling overwhelmed.

I have tried the 3.51 32 bit driver, the 5.1 32 bit driver and the 5.1 64 bit driver and they all yield the same error message:

ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

My questions are:

1> Can I still run/support this 32 bit exe (MySQL Driver) in a 64 bit environment?

2> If I can't, Is it simply a matter of changing my connection string logic and using the 64 bit driver or will I need to move my application to a 64 bit app and have two code branches/builds of my app, one that is 32 bit and the other 64 bit??

Thanks,

Shawn

Problem with View table connecting through ODBC DSN (no replies)

$
0
0
I have software I'm trying to connect my MySQL database to, connecting to tables works fine, but the software just shuts down if I try to connect to a view. I'm not very familiar with all this stuff, so any help is much appreciated.

Error 1918 and Error 13 on Install (no replies)

$
0
0
I have received the two errors, 1918 and 13, when trying to install the ODBC connector on windows xp. It says it cannot find the translator library and says to make sure the file "MySQL ODBC 5.1 Connector" is available, but isn't that the file I'm trying to install in the first place? Any help would be great, Thanks.

connecting to mysql error (no replies)

$
0
0
Dear All,
i am very new to mysql. i wrote script to connect to mysql, but i keep getting the error below. I have checked my password and username is correct.
please help out

Error message
Warning: mysql_pconnect() [function.mysql-pconnect]: Access denied for user 'whales'@'win363.ourcp.com' (using password: YES) in C:\inetpub\vhosts\webtolsc.com\httpdocs\connect_to_mysql.php on line 15

Fatal error: Access denied for user 'whales'@'win363.ourcp.com' (using password: YES) in C:\inetpub\vhosts\webtolsc.com\httpdocs\connect_to_mysql.php on line 15

the scripts is:
$db_host = "localhost";
$db_username = "whales";
$db_pass = "********";
$db_name = "adeywhales1_database";
mysql_connect("$db_host","$db_username","$db_pass") or die ("could not connect to mysql");
mysql_select_db("$db_name") or die ("no database");

MySQL View Connection Problem (no replies)

$
0
0
I'm not technically a web developer, but I'm the only one in my office that does this sort of thing, so any help would be greatly appreciated!!!

I have this ID software (ID Flow from Jolly Technologies) that we purchased because it can be connected to a MySQL Database that's hosted on an outside server. I've created the DNS connection and checked that it's working. We also created a View to pull different fields from different tables. When I try to connect the software to the view, it just shuts down. It works fine when connecting to a table. The tech support at Jolly Technologies has not been much help because they say this is a problem outside the scope of their software. They say it's a problem with the view itself, even though I can't even choose a different view from the dropdown menu without having the software crash.

I have one IT resource that has confirmed the View works just fine and he doesn't know what else it could be. We've tried everything and I don't know who to turn to for help.

PLEASE HELP!!!

ERROR [HY001] [MySQL][ODBC 5.1 Driver][mysqld-5.1.53-community-log]Memory allocation error (no replies)

$
0
0
Hi,
I'm getting the following error while trying to update some data using update statement. I'm using Windows Service type application that runs on Windows Server 2008 64 bit. Same application is working on 32 bit server. What could be the reason? Please help...


ERROR [HY001] [MySQL][ODBC 5.1 Driver][mysqld-5.1.53-community-log]Memory allocation error

ODBC Driver - ReadOnly? (1 reply)

$
0
0
Hi all, thanks in advance for taking the time to answer my question here:

I just set up my ODBC driver having full privileges to read/write. Is there as setting inside the driver to readonly?

Using MySql 4, myodbc 5.1, windows xp.
Thanks,
Cory

Compiling/linking with unixODBC on OS X (no replies)

$
0
0
I'm trying to install MySQL Connector/ODBC 5.1.11 from source on Mac OS X Lion (10.7) using the unixODBC manager installed via MacPorts. The compilation appears to work until it tries to link to the unixODBC library.

When using MacPorts almost everything interesting is installed under /opt/local. I built the make files with the following command:

cmake -G "Unix Makefiles" \
-DWITH_UNIXODBC=1 \
-DODBC_INCLUDES=/opt/local/include \
-DODBC_LIB_DIR=/opt/local/lib \
-DMYSQL_INCLUDE_DIR=/opt/local/include/percona/mysql/ \
-DMYSQL_LIB_DIR=/opt/local/lib/percona/mysql/ \
-DCMAKE_INSTALL_NAME_DIR=/opt/local/lib

When I issue "make", the build proceeds without issue until it tried to link to unixODBC:

Linking C shared module ../lib/libmyodbc5.so
ld: library not found for -lodbcinst
collect2: ld returned 1 exit status
make[2]: *** [lib/libmyodbc5.so] Error 1
make[1]: *** [driver/CMakeFiles/myodbc5.dir/all] Error 2
make: *** [all] Error 2

My odbcinst lib is at:
/opt/local/lib/libodbcinst.dylib

Is there a configuration flag I'm missing?

unable to connect access with mysql database. (no replies)

$
0
0
I installed the MySQL ODBC 5.1 Driver. Under Administrative tools - Data Sources (ODBC), Im able to successfully create a User DSN connection to my mySQL DB. When I go to Microsoft Access - External Data - ODBC Database - link the data source by creating a linked table - machine datasources and select my created ODBC connection, it says

'ODBC -- call failed. [Microsoft][ODBC Driver Manager] The specified DSN contains an architecture mismatch between the driver and Application (#0).

I figured my access must not be 64 bit, so I run ODBC from the folder C:\Windows\SysWOW64\odbcad32.exe and add an ODBC with the MySQL ODBC 3.51 Driver, no matter what I put in, it will not take my username and password, even though the same username and password works for the 64 bit driver. I get Connection Failed:[HY000][MySQL][ODBC 3.51 Driver] Access denied for user 'root@'hostname' (using password:YES).

Theres got to be an easy F*#$*@! way to connect an access db with a mysql db. it shouldnt have to be rocket science...


my OS is windows 7
mysql is on a separate server.

watch Femme Fatales Crazy Mary Episode 9,Season 2 July-20-2012 (no replies)

$
0
0
The show is in the top ranking as no one wants to miss it due to its interest creating story and extradordinary acting. The actors and actresses are performing there best to take the show to new heights. The direction and the story of the show is as promising as any one can imagine. The present situation of the show is as amazing and interesting as it can get. Must watch.




!!! Watch Episode Now !!!!







WATCH NOW

WATCH NOW

WATCH NOW














Femme Fatales,watch Femme Fatales, Femme Fatales review, Femme Fatales preview, Femme Fatales , Femme Fatales July-20-2012, Femme Fatales Crazy Mary Episode 9 Season 2, Femme Fatales Episode 9 Season 2

$$$watch Four in a Bed Payment Day Episode 55,Season 3 July-20-2012 (no replies)

$
0
0
The show is in the top ranking as no one wants to miss it due to its interest creating story and extradordinary acting. The actors and actresses are performing there best to take the show to new heights. The direction and the story of the show is as promising as any one can imagine. The present situation of the show is as amazing and interesting as it can get. Must watch.




!!! Watch Episode Now !!!!







WATCH NOW


WATCH NOW


WATCH NOW










Four in a Bed,watch Four in a Bed, Four in a Bed preview, Four in a Bed review, Four in a Bed, Four in a Bed July-20-2012, Four in a Bed Payment Day, Four in a Bed Payment Day Episode 55 Season 3, Four in a Bed Episode 55 Season 3 July-20-2012

MySQL ODBC driver (1 reply)

$
0
0
Hi

I tried to install rmysql-connector-odbc-5.1.11-win32 in windows 7 32 bit computer.Installation is successful. but when I'm going to connect system DSN it says "The setup routines for the mysql odbc 5.1 driver could not be accessed. Please reinstall the driver" and component not found in the registry. Can anyone help me to solve the problem.

I have installed MyODBC-standard-3[1].51.07-win into win XP machine and it works.

Thank u in advance.

ODBC driver - slow connection (no replies)

$
0
0
Hi,

We have a local network and linux server (Debian) with mysql database. I installed ODBC driver 5.1 to access database. On my computer (winXP) connection is fast and I get results from database right away.

I tried the same queries in another six computers in local network and the queries are very slow (it takes up to five seconds). I checked network settings and we seem to have same settings.

Does anyone has any suggestions how to fix this problem ?

Peter

Watch Snooki & JWOWW:calm down hormonal Streaming New Episode 26/07/2012 (no replies)

$
0
0
This show is really going well and has created so many turning points during this great season. Actors are performing very well and giving their best to entertain the viewers / fans of this<!--more--> excellent show. The commitment of the actors/director towards the success of this show is now proven.This show has all the flavors in it. The direction of screen play and story is very interesting and no one wants to miss the latest episode.
Enjoy the New Episode now !!!


WATCH NOW

WATCH NOW

WATCH NOW



Watch Snooki & JWOWW:calm down hormonal, Snooki & JWOWW:calm down hormonal,episode Snooki & JWOWW:calm down hormonal 26/07/2012, Snooki & JWOWW:calm down hormonal live stream,

Watch The Real L Word:Lost Love S03E03 Live Stream 26/07/2012 (no replies)

$
0
0
This show is really going well and has created so many turning points during this great season. Actors are performing very well and giving their best to entertain the viewers / fans of this<!--more--> excellent show. The commitment of the actors/director towards the success of this show is now proven.This show has all the flavors in it. The direction of screen play and story is very interesting and no one wants to miss the latest episode.
Enjoy the New Episode now !!!


WATCH NOW

WATCH NOW

WATCH NOW




Watch The Real L Word:Lost Love,The Real L Word:Lost Love,episode The Real L Word:Lost Love 26/07/2012, The Real L Word:Lost Love live,

Watch Project Runway:candy couture Live STream Megavideo 26/07/2012 (no replies)

$
0
0
This show is really going well and has created so many turning points during this great season. Actors are performing very well and giving their best to entertain the viewers / fans of this<!--more--> excellent show. The commitment of the actors/director towards the success of this show is now proven.This show has all the flavors in it. The direction of screen play and story is very interesting and no one wants to miss the latest episode.
Enjoy the New Episode now !!!


WATCH NOW


WATCH NOW


Watch Project Runway:candy couture, Project Runway:candy couture, Project Runway:candy couture 26/07/2012 episode, Project Runway:candy couture live,
Viewing all 1136 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>