summaryrefslogblamecommitdiffstats
path: root/db.py
blob: 583dfd5cb54a2b0657519f2d9daf02b50877d455 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                                                                                                           
#!/usr/bin/env python3

import pymysql

def getConnection():
    db = pymysql.connect('mysql.oebsrv.int.intranet', 'bwlehrpool', 'weav3Nu8ShaifaePh6aiqu6aetei7e', 'bwlehrpool', cursorclass=pymysql.cursors.DictCursor)
    return db

def closeConnection(db):
    db.commit()
    db.close()