>    I had a vTcl application that while running work with a database 
> PostgreSql.
> After many times i query the database i had this error message:
> 
> Error: hard limit on result handles reached is not a valid query result
> 
> What that error means?

    Basically, Postgres's Tcl interface creates a result handle each time
you execute a query.  It allocates a lot of memory and resources to
maintain the handle, so it's your responsibility to clear the result
when you're done using it.  You can do this with:

pg_result $resultHandle -clear

Thanks,

Damon


_______________________________________________
vtcl-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/vtcl-user

Reply via email to