Add a couple of queries for GUI building

This commit is contained in:
Worros 2009-04-11 17:10:00 +08:00
parent 76d7b63b81
commit 15d7e1fab5

View File

@ -1153,6 +1153,12 @@ class FpdbSQLQueries:
and hprof2.PlPosition = stats.PlPosition) and hprof2.PlPosition = stats.PlPosition)
order by stats.category, stats.limittype, stats.bigBlind, cast(stats.PlPosition as signed) order by stats.category, stats.limittype, stats.bigBlind, cast(stats.PlPosition as signed)
""" """
if(self.dbname == 'MySQL InnoDB') or (self.dbname == 'PostgreSQL') or (self.dbname == 'SQLite'):
self.query['getGames'] = """SELECT DISTINCT category from Gametypes"""
if(self.dbname == 'MySQL InnoDB') or (self.dbname == 'PostgreSQL') or (self.dbname == 'SQLite'):
self.query['getLimits'] = """SELECT DISTINCT bigBlind from Gametypes ORDER by bigBlind DESC"""
if __name__== "__main__": if __name__== "__main__":
from optparse import OptionParser from optparse import OptionParser