예제 #1
0
def importCountries():
    cur.execute('SELECT  * FROM COUNTRY')
    return cur.fetchall()
예제 #2
0
def importCity():
    cur.execute('SELECT  * FROM CITY')
    return cur.fetchall()
예제 #3
0
def getGoals():
    cur.execute('SELECT home_score,away_score FROM GAME')
    return cur.fetchall()
예제 #4
0
def importGames():
    cur.execute('SELECT  * FROM GAME')
    return cur.fetchall()
예제 #5
0
def importTournament():
    cur.execute('SELECT  * FROM TOURNAMENT')
    return cur.fetchall()
예제 #6
0
def importTeams():
    cur.execute('SELECT  * FROM TEAM')
    return cur.fetchall()