mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2025-08-15 19:31:54 +08:00
Doc and comment link fixes
This commit is contained in:
2
INSTALL
2
INSTALL
@ -175,7 +175,7 @@ Packaged as `mysql-python`_. ::
|
|||||||
# emerge mysql-python
|
# emerge mysql-python
|
||||||
# emerge zmysqlda # if you use Zope
|
# emerge zmysqlda # if you use Zope
|
||||||
|
|
||||||
.. _`mysql-python`: http://packages.gentoo.org/search/?sstring=mysql-python
|
.. _`mysql-python`: https://packages.gentoo.org/packages/search?q=mysql-python
|
||||||
|
|
||||||
|
|
||||||
BSD
|
BSD
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
These classes are dictated by the DB API v2.0:
|
These classes are dictated by the DB API v2.0:
|
||||||
|
|
||||||
http://www.python.org/topics/database/DatabaseAPI-2.0.html
|
https://www.python.org/dev/peps/pep-0249/
|
||||||
"""
|
"""
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -71,7 +71,7 @@ Solutions:
|
|||||||
* reconfigure your system so that the MySQL libraries are on the
|
* reconfigure your system so that the MySQL libraries are on the
|
||||||
default loader path. In Linux, you edit /etc/ld.so.conf and run
|
default loader path. In Linux, you edit /etc/ld.so.conf and run
|
||||||
ldconfig. For Solaris, see `Linker and Libraries Guide
|
ldconfig. For Solaris, see `Linker and Libraries Guide
|
||||||
<http://docs.sun.com/app/docs/doc/817-3677/6mj8mbtbe?a=view>`_.
|
<http://docs.oracle.com/cd/E19253-01/817-1984/chapter6-63352/>`_.
|
||||||
|
|
||||||
|
|
||||||
ImportError: ld.so.1: python: fatal: libmtmalloc.so.1: DF_1_NOOPEN tagged object may not be dlopen()'ed
|
ImportError: ld.so.1: python: fatal: libmtmalloc.so.1: DF_1_NOOPEN tagged object may not be dlopen()'ed
|
||||||
|
@ -152,7 +152,7 @@ This does what the previous example does, but gets the username and
|
|||||||
password and other parameters from ~/.my.cnf (UNIX-like systems). Read
|
password and other parameters from ~/.my.cnf (UNIX-like systems). Read
|
||||||
about `option files`_ for more details.
|
about `option files`_ for more details.
|
||||||
|
|
||||||
.. _`option files`: http://dev.mysql.com/doc/mysql/en/Option_files.html
|
.. _`option files`: http://dev.mysql.com/doc/refman/en/option-files.html
|
||||||
|
|
||||||
So now you have an open connection as ``db`` and want to do a
|
So now you have an open connection as ``db`` and want to do a
|
||||||
query. Well, there are no cursors in MySQL, and no parameter
|
query. Well, there are no cursors in MySQL, and no parameter
|
||||||
@ -366,7 +366,7 @@ connect(parameters...)
|
|||||||
an exception is raised. *This must be a keyword
|
an exception is raised. *This must be a keyword
|
||||||
parameter.*
|
parameter.*
|
||||||
|
|
||||||
.. _mysql_ssl_set: http://dev.mysql.com/doc/mysql/en/mysql_ssl_set.html
|
.. _mysql_ssl_set: http://dev.mysql.com/doc/refman/en/mysql-ssl-set.html
|
||||||
|
|
||||||
|
|
||||||
apilevel
|
apilevel
|
||||||
|
@ -3,7 +3,7 @@ test_suite = nose.collector
|
|||||||
|
|
||||||
[build_ext]
|
[build_ext]
|
||||||
## Only uncomment/set these if the default configuration doesn't work
|
## Only uncomment/set these if the default configuration doesn't work
|
||||||
## Also see http://docs.python.org/dist/setup-config.html
|
## Also see https://docs.python.org/distutils/configfile.html
|
||||||
# include-dirs = ?
|
# include-dirs = ?
|
||||||
# library-dirs = ?
|
# library-dirs = ?
|
||||||
# link-objects = ?
|
# link-objects = ?
|
||||||
|
Reference in New Issue
Block a user