mariadb async query

From Onset Developer Wiki
Revision as of 08:11, 30 August 2019 by BlueMountains (talk | contribs)
mariadb async query

Type: Function
Context: Server
Introduced: v1.0

NOTICE

This function is provided by the official MariaDB plugin.

Description

Executes a query in different parallel threads. Execution of order can not be guaranteed.

Syntax

mariadb_async_query(handle, query_str [, callback_func, callback_args...])

Parameters

  • handle
    Connection handle.
  • query_str
    The query to be executed.
  • callback_func (optional)
    The function that will be called when the query was executed.
  • callback_args (optional)
    Multiple arguments to pass to the callback_func.

Return Value

  • __EDIT_ME__

Example

__EDIT_ME__

See also

__EDIT_ME__