From 7926c88e48d5a9da7301f5894259a2dcf82b53b0 Mon Sep 17 00:00:00 2001 From: gimick Date: Wed, 23 Feb 2011 09:19:09 +0000 Subject: [PATCH] Rushaux: fix tablenames (case sensitive in mySql) --- pyfpdb/RushNotesAux.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/RushNotesAux.py b/pyfpdb/RushNotesAux.py index fcc82dd4..19dc82dc 100644 --- a/pyfpdb/RushNotesAux.py +++ b/pyfpdb/RushNotesAux.py @@ -241,8 +241,8 @@ class RushNotes(Aux_Window): c = db_connection.get_cursor() c.execute(("SELECT handId, position, startCards, street0Aggr, tableName " + - "FROM hands, handsPlayers " + - "WHERE handsplayers.handId = hands.id " + + "FROM Hands, HandsPlayers " + + "WHERE HandsPlayers.handId = Hands.id " + "AND street0VPI = 1 " + "AND startCards > 0 " + "AND playerId = %d " +