Method __builtin.Sql.Connection()->streaming_typed_query()


Method streaming_typed_query

variant .Result streaming_typed_query(object|string q)

Description

Send an SQL query synchronously to the SQL-server and return the results streaming in typed mode.

For the arguments, please see the big_query() function.

Returns

A streaming Sql.Result object in typed mode. This allows for having results larger than the available memory, and returning some more info about the result.

Drivers should override this prototype function.

See also

big_query, streaming_query, big_typed_query


Method streaming_typed_query

variant .Result streaming_typed_query(object|string q, mapping(string|int:mixed) bindings)

Description

Send an SQL query synchronously to the SQL-server and return the results streaming in typed mode.

For the arguments, please see the big_query() function.

Returns

A streaming Sql.Result object in typed mode. This allows for having results larger than the available memory, and returning some more info about the result.

Drivers should override this prototype function.

See also

big_query, streaming_query, big_typed_query


Method streaming_typed_query

variant .Result streaming_typed_query(object|string q, string|multiset|int|float|object extraarg, string|multiset|int|float|object ... extraargs)

Description

Send an SQL query synchronously to the SQL-server and return the results streaming in typed mode.

For the arguments, please see the query() function.

Returns

A streaming Sql.Result object in typed mode. This allows for having results larger than the available memory, and returning some more info about the result.

See also

big_query, streaming_query, big_typed_query