Displaying 3 results from an estimated 3 matches for "sql_result".
2004 Aug 06
2
XML statistics on remote server
what i did in this situation was dump the stats/status file to the local
server through a lynx --dump call from php .. and then i also update a
sql table to reflect the changes so i can poll that instead ..
a.
<p>On Thu, 26 Feb 2004, MacSym wrote:
>
> Hi everybody,
>
> I am wondering if it is possible to generate the XML/XSL files on a remote
> server (status.xsl,
2010 Apr 14
4
PostgreSQL driver supporting [round-robin] load balancing and redundancy [LONG]
...ground until success.
Design Overview
---------------
struct multi_pgsql_pgdb & routines working on that provide both the
'simple' query interface and transaction support.
struct multi_pgsql_pgc represents a database connection.
The result interface is implemented as struct multi_pgsql_result &
assorted subroutines.
Transactions are provided by a struct multi_pgsql_transaction_context
which contains a linked-list of transaction subqueries
(struct multi_pgsql_transaction_subquery).
A 'class hierarchy' of 'query classes' is used to provide the
different kinds of '...
2005 Nov 28
1
Unused SQL API
...e and more every day. :) I have
not had any trouble figuring out what is needed of the driver, even without any
API documentation.
However, the one part of the driver that's given me pause has turned out to
most likely be unnecessary. Whilst I was trying to work out how to deal with
the sql_result->get_values() call without leaking memory, it seemed an odd
method to have along side the other calls.
So I decided to look for where it was used, to try to understand.
Only, it isn't. The _only_ point I can find in the sources that calls that
method is in the Postgress SQL driver....