Libmysql is a client library for connecting C written application to MySql.

learn more… | top users | synonyms

0
votes
1answer
45 views

Why does this CMake project not set the appropriate MSVC runtime?

I'm trying to understand why the libmysql CMake project configured with /MD and /MDd flags does not generate the appropriate Visual Studio 10 project files. The appropriate CMAKE_ macros have been ...
0
votes
0answers
57 views

MySQL multithreading app and segfault when reconnect to MySQL into worker thread

I have multithreading application client to MySQL and I use MySQL C-client (libmysqlclient_r). I have db connections pool, where I open connection before create thread workers (pthread_create). The ...
0
votes
0answers
37 views

Is my libmysql - mysqlnd version old?

My local phpMyAdmin (3.5.7) installation reports the following webserver information: nginx/1.2.7 Database clientversion: libmysql - mysqlnd 5.0.8-dev - 20102224 - $Id: {a long hex number} $ ...
1
vote
0answers
73 views

MySQL C API - Reusing connection just after mysql_store_result() or mysql_stmt_store_result() is called

For a "Select" sql, is it safe to reuse the connection for calling the my_xxxx_store() API (to cache all the result in client) multiple times, before we copy all rows by calling my_fetch_xxx() API, ...
0
votes
1answer
29 views

MySQL Client Library version compatibility with Server?

We are wrting a C++ application which links to MySQL shared Library dynamically to communicate with Server. My question is for normal queries and stuff (which is supported by almost every library) , ...
0
votes
0answers
41 views

Segmentation fault on fetch_fields but not fetch_field

I'm getting a segmentation fault when attempting to call fetch_fields against a MYSQL::Result class. The unusual thing about this is that I'm able to call fetch_field individually and get three ...
0
votes
1answer
370 views

“version libmysqlclient_18 not defined in file libmysqlclient.so.18” when loading mysqli extension

I recently switched from mysql 5.5 to mariadb 5.5, however it now seems the php extension for mysqli will not load. I get the following error: PHP Warning: PHP Startup: Unable to load dynamic ...
0
votes
0answers
206 views

DbExpress: Using New 5.1 libmysql.dll with older MySQL 5.0 server

I would like to find out from fellow developers if there are any pitfalls in using a recent libmysql.dll with a previous MySQL server. I use Delphi with DbExpress to build database applications. My ...
0
votes
1answer
168 views

OSX Xcode - Packaging dependencies libmysqlclient.18.dylib

This may well have been asked before I just couldn't figure out the right term to search. I'm writing a client-server application to run on an OSX desktop which will talk to a MySQL server on the ...
0
votes
0answers
59 views

Haw I can to use the nonblocking i/o for MySQL in C-connector

The mysql C-connector use the nonblocking i/o (See src). The executing MySQL query have some time. I could be to processing any work for my server in other thread or coroutine when executing the query ...
0
votes
0answers
85 views

MySQL Connector/C++ hangs on read()

I am writing a multi-threaded application in C++ using Boost threads (pthread). The application spawns 100 threads and each thread does the following task (I am writing a code snippet that will be ...
-2
votes
2answers
93 views

c++ " was not declared in this scope error while using shared library generated by MySQL C API [closed]

I generated a shared library which wraps MySQL C API functions. It has a sample.h and sample.cpp files like this using namespace std; class MysqlInstance { protected: string user; string ...
1
vote
0answers
60 views

Consistent Error 2005 when connecting with C API Libmysql

First, I would like to say I've been lurking this site for years now, and I appreciate all that you've done to help me with C\C++. The real issue I'm having, is I have made a program in windows that ...
1
vote
3answers
165 views

Is MySQL C++ Connector is slower than MySQL C API?

I'm developing a C++ application which needs to connect to MySQL server for some information but my app doesn't run queries frequently. So As C++ connector uses C API behind the scenes... I got this ...
1
vote
0answers
249 views

How do I link a third party dylib in a Mac OS X app using XCode 4.5? “Undefined symbols” error

I'm trying to use functions defined in a third-party dynamic library (libmysql) in a desktop app for Mac OS X. I'm using XCode 4.5.1 on Mac OS X v. 10.8.2. Here's what I've done so far: 1) I ...
0
votes
0answers
67 views

libmysql.dll server requests hanging application

Is there something that can be done so that libmysql.dll doesnt hang app but simply returns an error if it happens? Instead of error on rare ocassions the request to the server will just keep hanging ...
0
votes
1answer
622 views

Invalid free() / delete / delete[] / realloc() with g_string_free()

I have a GList which contains a collection of GSList. This GSlist contains a collection of GString. When I free the whole GList, I get segmentation fault. Now check the following code. GList ...
0
votes
1answer
78 views

Segfault on g_strdupv function

I am getting segfault on this function. /** * Excutes the passed query and returs the the first row as an array of * strings. You must free this array by calling g_strfreev() */ static gchar** ...
1
vote
3answers
147 views

C SQL Query building made easy

Building a SQL in c is painful work. It takes a lot of time to build such thing. I am new to glib. It helps on string manipulation. But I dont find any to shorten query building code. See a sample ...
1
vote
1answer
234 views

building mysql client library with ssl support

I am trying to build mysql-5.0.33 client library with SSL support. For which I am using ./configure --prefix=<some dir> --exec-prefix=<some dir> --with-openssl=<path to openssl ...
3
votes
1answer
343 views

g++ mysql linker error

I am trying to compile a program written in c++ with the following command line: g++ test.cpp pugixml-1.0/src/pugixml.cpp -lcurl -lmysqlclient -lmysqlcppconn-static -lboost_thread This goes all ...
0
votes
1answer
74 views

MySQLdb - libmysqlclient_r stuck on read()

I am writing a multi-threaded python application that read/write to a MySQL DB (using MySQLDB and libmysqlclient_r - thread safe library). At some point (not sure why or when), one of the threads ...
1
vote
0answers
178 views

libmysql (c-api) slow compared to php-mysqli

I'm investigating why my C-test-program(libmysql) is almost twice as slow the same php-test(cli) program: I'm creating a prepared-statement and inserting 10 records. The php-cli-version(mysqlnd) is ...
0
votes
1answer
186 views

May prepared statements be shared across threads?

using libmysqlclient_r.so i.e c mysql connector. as per current arch, In thread1 for connection1 prepared stmt will be created and cached . next for thread2 connection2 cached prepared stmt will be ...
0
votes
1answer
155 views

Python libmysqlclient segfault (MySQLdb)

I am writing an SQL wrapper over MySQLdb. Sometime during execution I am getting the following error in DMSG and the process crushes: python[xxx]: segfault at c8 ip 00007fa1add6b882 sp ...
0
votes
1answer
261 views

how do I solve libmysqlclient_r.so symbol referencing linking errors?

following is the make linking output. it shows Symbol referencing errors, even though I have provided path for libmysqlclient_r.so If I link it to libmysqlclient.so then it works fine. But as my ...
0
votes
2answers
228 views

Fetch numbers directly using MySQL C API

I'm using MySQL C API with C++ to connect to a database. I wold like so select some numbers from the database. Is there a way to fetch number types like INTEGER or DOUBLE into native C types like ...
0
votes
3answers
697 views

libmysql mysql_real_connect fails with localhost but works with local IP address

I am using the libmysql C API, the mysql_real_connect call only works if I use the real IP address of the host - other than localhost. If I use localhost as host I get the following error: ERROR ...
0
votes
2answers
5k views

Linux - Dependency libmysqlclient.so.15 not found

I start the instalation, now i receive a error for file dependencies see: root@ca [~/sitebuilder]# rpm -Uhv updates/*.rpm error: Failed dependencies: libmysqlclient.so.15()(64bit) is needed by ...
0
votes
1answer
200 views

Connecting to mySQL DB over loaded libmysql.dll

I'm loading a libmysql.dll and want to connect to a db. When calling the mysql_real_connect i get a buffer overflow error. Why? Code: #include <iostream> #include <string.h> #include ...
5
votes
3answers
5k views

mysql2.so: libmysqlclient_r.so.15: cannot open shared object file: No such file or directory

I am trying to run a Rails two app with Ubuntu 10.04 server, sphinx, myql2 version 0.2.7 and percona server 5.5 (Myslql 5.5). mysql2 in irb works ok, I can connect to the db. this rails 2 app is ...
1
vote
0answers
380 views

mysqlclient with mingw

I want to use libmysqlclient on a project cross compiled to Windows via mingw. In order to link my program, I need "mysqlclient.a" but I'm not able to get it. I tried to create makefiles for mingw on ...
0
votes
1answer
317 views

How to install libmysql under Cygwin?

I am trying to build db-mysql extension for NodeJS under Cygwin. The problem is, that it requires libmysql development libraries and include files. I have no idea how to install (and where to get) ...
1
vote
1answer
1k views

Fail to build mysql connector/c (libmysql) from source in cygwin

I am trying to build MySQL's "Connector/C" from source in cygwin and there are problems. -some context- We could talk a lot about why anyone would want use libmysql in cygwin. In this case, it is ...
3
votes
4answers
2k views

What is difference between libmysqlclient.a and libmysqlclient_r.a?

Which should I use to link for mysqlclient library? What is the difference between them? I can't seem to find the answer. Thanks.
3
votes
1answer
559 views

Connecting to a remote MySQL server from a Delphi program through SSL

I don't have a good knowledge of SSL principles, but just want the encryption to work for me. I have a DB and a user with "REQUIRE X509" specified. The necessary certificates have been created as ...
0
votes
1answer
360 views

How to downgrade libmysqlclient

I just built a new dev box with Ubuntu 10.04.1 amd64 server on, installed all all libraries and stuff , but now my program segfaults randomly in libmysqlclient16. Just to eliminate things I tried to ...
0
votes
2answers
771 views

Runtime “symbol lookup error” when accessing libmysqlclient.so functionality in C

Context: I am not certain whether this is my problem or the problem of the server this is running on. I am trying to compile and run a small utility, to become a cron job, that uses the mysql ...
13
votes
2answers
576 views

CLSQL and MYSQL on OS X

I'm working on OS X 10.6.4. I've been using clbuild to install supporting libraries for SBCL (including clsql), and I do all my work through Aquamacs. I installed MySQL using the excellent ...
0
votes
1answer
796 views

Where's the source of mysqlclient.lib?

I have a C++ application which connects to a MySQL server. It all works fine. Currently it uses libmysql.dll. At build time I link to libmysql.lib. As far as I understand I can link to ...
0
votes
1answer
466 views

How do I build libmySQL?

I aim to integrate libmySQL into my executable instead of using libmySQL.dll. I use VC++ 2008 @ Windows Vista. I've downloaded "mysql-connector-c-noinstall-6.0.2-win32-vs2005.zip" from ...
0
votes
2answers
360 views

Problems upgrading MySQL application from Delphi 2006 to 2010

I upgraded my Delphi to 2010 version and I tried to open and run application written in Delphi 2006. The app is using mysql by dbexpress with libmysql.dll and a second driver found somewhere on the ...
7
votes
3answers
4k views

Cheapest way to to determine if a MySQL connection is still alive

I have a pool of MySQL connections for a web-based data service. When it starts to service a request, it takes a connection from the pool to use. The problem is that if there has been a significant ...
1
vote
0answers
148 views

libmysqlclient hangs on vmsplice()

I am running an executable that uses libmysqlclient.so.15 on a 64bit kernel & 32bit user space compatibility mode. Once in a while, my program hangs on something from libmysql: #0 0xf7f01430 in ...
1
vote
2answers
1k views

Delphi 7 Personal, MySQL using libmysql.dll + UTF8

I'm using Delphi 7 Personal. To access MySQL database I'm using libmysql.dll + very simple wrapper, which is good enough for me. Except one thing ... it doesn't seem to handle Utf8... is that possible ...