mysqlLink
===========
From del.icio.us to Python. Based on work done by Frank Timmermann\ [#]_.
See `license.txt`__.
Installation::
% python setup.py install
or pip install mysqlLink
And either import the (documented) class::
>>> import mysqlLink
Use the functions on the module, listed below.
def mysql_connect(Host, Port, User, Passwd, Db, Charset):# Make a link object
def execute_sql(connect, sql):# Execute sql after making a link object
method for using:
if __name__ == '__main__':
print("please input:localhost port user password db_name charset!")
cur = sys.stdin.readline()
localhost, port, user, passwd, db, charset = cur.split()
port = int(port)
newConnect = mysql_connect(localhost, port, user, passwd, db, charset)
print("please input sql!")
sql = sys.stdin.readline()
execute_sql(newConnect, sql)
Please do `Email <1341449544@qq.com>`_ any bugs.
Overview
--------
Use functions in my module can help you work easily when you are developing DBS with MySQL.
Documentation
-------------
Historical
----------
===========
From del.icio.us to Python. Based on work done by Frank Timmermann\ [#]_.
See `license.txt`__.
Installation::
% python setup.py install
or pip install mysqlLink
And either import the (documented) class::
>>> import mysqlLink
Use the functions on the module, listed below.
def mysql_connect(Host, Port, User, Passwd, Db, Charset):# Make a link object
def execute_sql(connect, sql):# Execute sql after making a link object
method for using:
if __name__ == '__main__':
print("please input:localhost port user password db_name charset!")
cur = sys.stdin.readline()
localhost, port, user, passwd, db, charset = cur.split()
port = int(port)
newConnect = mysql_connect(localhost, port, user, passwd, db, charset)
print("please input sql!")
sql = sys.stdin.readline()
execute_sql(newConnect, sql)
Please do `Email <1341449544@qq.com>`_ any bugs.
Overview
--------
Use functions in my module can help you work easily when you are developing DBS with MySQL.
Documentation
-------------
Historical
----------
Release files for mysqlLink 1.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| mysqlLink-1.3.tar.gz | 1.9 kB | Details |
Release files / mysqlLink-1.3.tar.gz
| Download URL | mysqlLink-1.3.tar.gz |
|---|---|
| Size | 1.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
318ec27c21f7f65b925a3b0f0fb411311ee51a11f152cccdf5872362f5f8f941
|
|
BLAKE2b-256 checksum How to use checksums |
059e95ad9c2ba25d5765ffaaec328d05fcd38a3349cba87235b206e19e1a9be5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |