Skip to content

Commit 9a86a8c

Browse files
authored
Update README.md
1 parent 9f5376a commit 9a86a8c

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed

README.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,29 @@
1-
# EasySQL
2-
Use MySQLServer like a layman. Super easy to use MySQL with Python
1+
## Introduction - QuickSQL
2+
#### QuickSQL directly establishes connection between python and mysqlserver. And gives you simple interface to execute mysql commands easily.
3+
## How to use?
4+
5+
* ### Use 'quicksql' keyword to import
6+
7+
```import quicksql```
8+
9+
10+
* ### Creating instance of module
11+
```DB = quicksql('host', port, 'username', 'password', 'database-name')```
12+
13+
14+
15+
* ### quicksql only have one method which is 'query'
16+
17+
> pass your 'mysql commnad' as a string in query method to execute query.
18+
19+
20+
DB.query('update people set id=90 where id=1')
21+
DB.query('delete from people where id=1000')
22+
DB.query('delete from people where id=1022')
23+
DB.query('insert into people value(26,4,6)')
24+
DB.query('select * from people')
25+
26+
## Bugs & Feedback
27+
#### Github - [Visit Here](https://github.com/Anas-Dew/QuickSQL)
28+
29+

0 commit comments

Comments
 (0)