Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 420
Van Nguyen Avatar asked Dec 20 '10 03:12

Van Nguyen


People also ask

What is Libmysqlclient so?

C API (libmysqlclient) is a client library for C development. For C-language and SQL: for MySQL 8.0, 5.7, 5.6, 5.5. we recommend MySQL 8.0 C API.

Where is Libmysqlclient so?

/usr/lib/libmysqlclient.


1 Answers

Newer versions of the MySQL client distributions do not include the "_r" version. Some may have a symbolic link from libmyqslclient_r.a to libmyqslclient.a

like image 155
Garett Long Avatar answered Sep 27 '22 18:09

Garett Long