PDA

View Full Version : NaN


CPGJ
12-25-2009, 11:15 PM
I can add my database to TST but when I do a scan all I see in the stats columns is NaN. I've checked all the filters and everything but can't figure out what the problem is. I've used TST successfully in the past. I have Holdem Manager and Windows Vista. Thanks

Zandry
12-26-2009, 11:28 AM
I think HoldemManager got rid of it's "pokersites" table, I am fixing this for the next version, in the meantime there is a fix which is easy enough, read my response here:

http://www.tablescanturbo.com/forums/showthread.php?t=47

If that's not the issue or you need help to implement the fix send me a message on AIM/MSN/ICQ and I can do it for you on teamviewer

AIM: ZandryTST
MSN: zandry@tablescanturbo.com
ICQ: 571846001

CPGJ
12-26-2009, 02:54 PM
I can get as far as "tables" but there is nothing in the list there labeled "pokersites".

Zandry
12-26-2009, 06:38 PM
Oh, ok you have to create the table then insert those values, here is the code to create it

CREATE TABLE pokersites
(
site_id integer NOT NULL,
sitename character varying(20) NOT NULL,
abbreviation character varying(5) NOT NULL,
minuteadjustment integer NOT NULL,
CONSTRAINT pokersites_pkey PRIMARY KEY (site_id)
)
WITH (OIDS=FALSE);
ALTER TABLE pokersites OWNER TO postgres;