Rechercher dans le manuel MySQL
28.7.4.4 Running C API Client Programs
If, after an upgrade, you experience problems with compiled
client programs, such as Commands out of sync
or unexpected core dumps, the programs were probably compiled
using old header or library files. In this case, check the date
of the mysql.h
file and
libmysqlclient.a
library used for
compilation to verify that they are from the new MySQL
distribution. If not, recompile the programs with the new
headers and libraries. Recompilation might also be necessary for
programs compiled against the shared client library if the
library major version number has changed (for example, from
libmysqlclient.so.17
to
libmysqlclient.so.18
).
The major client library version determines compatibility. (For
example, for libmysqlclient.so.18.1.0
, the
major version is 18.) For this reason, the libraries shipped
with newer versions of MySQL are drop-in replacements for older
versions that have the same major number. As long as the major
library version is the same, you can upgrade the library and old
applications should continue to work with it.
Undefined-reference errors might occur at runtime when you try
to execute a MySQL program. If these errors specify symbols that
start with mysql_
or indicate that the
libmysqlclient
library cannot be found, it
means that your system cannot find the shared
libmysqlclient.so
library. The solution to
this problem is to tell your system to search for shared
libraries in the directory where that library is located. Use
whichever of the following methods is appropriate for your
system:
Add the path of the directory where
libmysqlclient.so
is located to theLD_LIBRARY_PATH
orLD_LIBRARY
environment variable.On OS X, add the path of the directory where
libmysqlclient.dylib
is located to theDYLD_LIBRARY_PATH
environment variable.Copy the shared-library files (such as
libmysqlclient.so
) to some directory that is searched by your system, such as/lib
, and update the shared library information by executingldconfig
. Be sure to copy all related files. A shared library might exist under several names, using symlinks to provide the alternate names.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-c-api-running-clients.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.