Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/mysql2/lib/constants/server_status.ts

MySQL client for Deno with focus on performance. Supports prepared statements, non-utf8 encodings, binary log protocol, compression much more
Latest
import * as mysql2 from "https://deno.land/x/mysql2@v1.0.6/lib/constants/server_status.ts";

Variables

To mark ResultSet containing output parameter values.

The server was able to fulfill the clients request and opened a read-only non-scrollable cursor for a query. This flag comes in reply to COM_STMT_EXECUTE and COM_STMT_FETCH commands.

Is raised when a multi-statement transaction has been started, either explicitly, by means of BEGIN or COMMIT AND CHAIN, or implicitly, by the first transactional statement, when autocommit=off.

This flag is sent when a read-only cursor is exhausted, in reply to COM_STMT_FETCH command.

Sent to the client if after a prepared statement reprepare we discovered that the new statement returns a different number of result set columns.