Use MySQLServer like a layman. Super easy to use MySQL with Python
Project description
## Introduction - QuickSQLConnector
QuickSQLConnector directly establishes connection between python and mysqlserver. And gives you simple interface to execute mysql commands easily.
How to use?
Use ‘quicksqlconnector’ keyword to import
` from quicksqlconnector import quicksqlconnector`
### Creating instance of module
`DB = quicksqlconnector('host', port, 'username', 'password', 'database-name')`
‘quicksqlconnector’ only have one method which is ‘query’
Pass your ‘mysql commnad’ as a string in ‘query’ method to execute query.
` Some test commands shown below -> DB.query('update people set id=90 where id=1') DB.query('delete from people where id=1000') DB.query('delete from people where id=1022') DB.query('insert into people value(26,4,6)') DB.query('select * from people') `
### Bugs & Feedback
Github - https://github.com/Anas-Dew/QuickSQL)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for quicksqlconnector-1.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d615ffd50f43dad5a24a3d3fcb35afb4dd21e47e3a73291996323144caf9bd65 |
|
MD5 | c8044b404dcabf54bb6dc1e15f179251 |
|
BLAKE2b-256 | 4a27f6a197d54f0d37604957a8ac95832429d6d373e6529102f53cafabb703ec |