Skip to content

Instantly share code, notes, and snippets.

View technetbytes's full-sized avatar
🎯
Focusing

Saqib Ullah Siddiqui technetbytes

🎯
Focusing
View GitHub Profile
@technetbytes
technetbytes / mysql-drivers-test.py
Created February 8, 2016 19:05
3 Mysql Drivers for python
#!/usr/bin/python
hostname = '127.0.0.1'
username = 'root'
password = 'root'
database = 'schooldb'
# Simple routine to run a query on a database and print the results:
def doQuery( conn ) :
cur = conn.cursor()