by kydechuk01 » Thu Oct 14, 2010 2:45 pm
Hi, guys!
My sql-coder friend looked to a problem and find the solution to make the current TourneyLuck working with last build of PokerTracker!
I tested it, and it is works!
1) Load the pgAdmin3 app
2) Connect to your postgre server
3) Click a base you need to connect with TourneyLuck
4) Click button "Execute SQL query" or Ctrl+E
5) Insert the following 2 queries to the editor and click execute it one after another:
Query 1:
CREATE TABLE lookup_tourney_table_type
(
id_type smallint NOT NULL,
description text,
CONSTRAINT lookup_tourney_table_type_primary_key PRIMARY KEY (id_type)
)
Query 2:
insert into lookup_tourney_table_type (id_type,description) SELECT id_table_type,description FROM tourney_table_type
6) Run the TourneyLuck app and connect it to the database.
Thats all. I hope our builders will check out this and say if there is something wrong (may it cause some bugs in work?)