SYNOPSIS

\*(T<#include <opendbx/api.h>\*(T>

\*(T<int odbx_result\*(T> \kx \*(T<(odbx_t* handle, odbx_result_t** result, struct timeval* timeout, unsigned long chunk);\*(T>

DESCRIPTION

Retrieves the result of a query statement sent by \*(T<odbx_query\*(T>() from the database server. After a statement was successfully executed, a dynamically allocated object representing the result set is stored in \*(T<result\*(T> which must be freed afterwards by \*(T<odbx_result_finish\*(T>(). Result sets for SELECT-like statements returned successfully by this function can be processed by calling \*(T<odbx_row_fetch\*(T>() until all rows are retrieved. If the statement was an INSERT, UPDATE, DELETE or a similar statement, the number of affected rows is available via \*(T<odbx_rows_affected\*(T>().

If a timeout or error occurs, the \*(T<result\*(T> pointer is set to NULL. In case of a timeout, \*(T<odbx_result\*(T>() should be called again because the query isn't canceled. This function must be called multiple times until it returns zero, even if the query contains only one statement. Otherwise, memory will be leaked and \*(T<odbx_query\*(T>() will return an error.

The third parameter (\*(T<timeout\*(T>) restricts the time the function is waiting for a result form the server. It may be NULL to wait until a result arrives. Otherwise, it can contain any number of seconds and microseconds in a timeval structure to wait for. The timeval structure must be set each time before calling \*(T<odbx_result\*(T>() because its content may get changed by the function. If the server doesn't respond within the timeout, the query isn't canceled! Instead, the next call to this function will wait for the same result set. Waiting the specified time may be implemented in the backends if it is possible, but there is no guarantee. If not, \*(T<odbx_result\*(T>() will return not before a responds arrives.

Dependent on the native database library, it may be possible to retrieve all rows at once (if \*(T<chunk\*(T> is zero), one by one or more than one row at once. All positive values including zero are allowed as values for \*(T<chunk\*(T> If paging (more than one row at once) is not supported by the backend, it will use "one by one" or "all at once" if this is the only option provided.

RETURN VALUE

\*(T<odbx_result\*(T>() returns \*(T<ODBX_RES_ROWS\*(T> ("3") if a result set is available and zero if no more results will be returned for the last query string sent via \*(T<odbx_query\*(T>() successfully. \*(T<ODBX_RES_NOROWS\*(T> ("2") is returned if the statement was executed successfully but will not return a results set (like for INSERT, UPDATE and DELETE statements) and \*(T<ODBX_RES_TIMEOUT\*(T> ("1") indicates a timeout. As soon as \*(T<ODBX_RES_DONE\*(T> ("0") is returned, the available result sets were processed. The named constants are available since OpenDBX 1.3.2 and the numbers in brackets have to be used instead if a previous release is is the basis for the application development.

It returns an error code whose value is less than zero if one of the operations couldn't be completed successfully. Possible error codes are listed in the error section and they can be feed to \*(T<odbx_error\*(T>() and \*(T<odbx_error_type\*(T>() to get further details. In this case, the backends are responsible for freeing the data structures they allocated inside the function and to clear the errornous result set if there's one available. The backends will also set the given result pointer to NULL before returning the error. Nevertheless, if a non-fatal error occurred it's possible to retrieve further result sets and this is necessary before calling \*(T<odbx_query\*(T>() on the same connection again.

ERRORS

-\*(T<ODBX_ERR_BACKEND\*(T>

The native database library returned an error

-\*(T<ODBX_ERR_PARAM\*(T>

Either \*(T<handle\*(T> or \*(T<result\*(T> are NULL or \*(T<handle\*(T> is invalid

-\*(T<ODBX_ERR_NOMEM\*(T>

Allocating the required memory for the result failed

-\*(T<ODBX_ERR_RESULT\*(T>

Waiting for a response from the server failed because the connection was lost

RELATED TO odbx_result…

\*(T<odbx_column_count\*(T>(), \*(T<odbx_column_name\*(T>(), \*(T<odbx_column_type\*(T>(), \*(T<odbx_rows_affected\*(T>(), \*(T<odbx_row_fetch\*(T>(), \*(T<odbx_result_finish\*(T>()