![]() |
|
#11
|
|||
|
|||
|
[ QUOTE ]
[ QUOTE ] someone make a DB with tables matching limits!! [/ QUOTE ] Well - I thought about it a bit. I could just write a quick parser that goes through the processed hhs from PT or whatever hhs you have and matches limits to table names. Then we could even combine everbodies data I guess. Shouldn't be too hard. I'll take a stab at the gui. [/ QUOTE ] We can use postgres to get the table names (EDIT: and of course their associated limits) in to an easy to parse AHK variable: <font class="small">Code:</font><hr /><pre> #NoEnv #include postgres.ahk sql := "SELECT DISTINCT table_name, game_level_desc FROM game g, game_level gl" sql .= " WHERE g.game_level_id = gl.game_level_id AND g.site_id = 2" sql .= " ORDER BY table_name ASC" sql .= ";" result := psql(sql) Msgbox, %result% </pre><hr /> A different method needed for Access DBs tho... dave. |
|
|