blob: 453ee707db4231f22c1c7b413f65a717932d99db (
plain)
1
2
3
4
5
6
7
8
9
10
|
import MySQLdb
def get_cursor():
host = 'localhost'
user = 'webqtl'
passwd = 'webqtl'
db = 'db_webqtl'
con = MySQLdb.Connect(db=db, host=host, user=user, passwd=passwd)
cursor = con.cursor()
return cursor
|