PDF (US Ltr)
- 41.8Mb
PDF (A4)
- 41.9Mb
Man Pages (TGZ)
- 272.3Kb
Man Pages (Zip)
- 378.3Kb
Info (Gzip)
- 4.2Mb
Info (Zip)
- 4.2Mb
Search Results
https://dev.mysql.com/doc/refman/9.7/en/srjs-api-simple-statements.html
A simple statement returns a result set which can be used to access data (rows), metadata, and diagnostic information. A simple statement is static, and cannot be modified after creation; in other words, it cannot be parametrized. A simple ...
https://dev.mysql.com/doc/refman/9.7/en/srjsapi-llm.html
LLM Constructor LLM.unload() LLM.generate() LLM.embed() LLM.rag() This class represents a large language model. The API also provides convenience methods; see Section 27.3.10.8, “Convenience Methods”. Both versions of these methods support ...
https://dev.mysql.com/doc/refman/9.7/en/srjsapi-schema.html
You can obtain an instance of Schema by calling the Session object's getSchema() method; you can also obtain a list of all available databases by calling getSchemas(). Schema supports the methods listed here: existsInDatabase(): Returns true if the ...
https://dev.mysql.com/doc/refman/9.7/en/srjsapi-session.html
The Session object is always available as the session property of the global object. Session has the methods listed here: createSchema(String name): Creates a database having the specified name, and returns the corresponding Schema object. Returns ...
https://dev.mysql.com/doc/refman/9.7/en/srjsapi-sqlexecute.html
SqlExecute has the following methods: execute(): Executes the SQL statement and returns an SqlResult. getOption(String optionName): Gets the value for the named option to this statement. Returns a string or true/false value, depending on the ...
https://dev.mysql.com/doc/refman/9.7/en/srjsapi-sqlresult.html
An SqlResult is produced whenever a query is executed using sqlExecute.execute(), PreparedStatement.execute(), or Session.runSql(). Methods supported by SqlResult are listed here: close(): Closes the result set. fetchAll(): Retrieves a list of all ...
https://dev.mysql.com/doc/refman/9.7/en/string-comparison-functions.html
Table 14.13 String Comparison Functions and Operators Name Description LIKE Simple pattern matching NOT LIKE Negation of simple pattern matching STRCMP() Compare two strings If a string function is given a binary string as an argument, the ...
https://dev.mysql.com/doc/refman/9.7/en/sys-ps-thread-stack.html
Returns a JSON formatted stack of all statements, stages, and events within the Performance Schema for a given thread ID. The value should match the THREAD_ID column from some Performance Schema threads table row. row *************************** ...
https://dev.mysql.com/doc/refman/9.7/en/sys-ps-truncate-all-tables.html
Truncates all Performance Schema summary tables, resetting all aggregated instrumentation as a snapshot. Parameters in_verbose BOOLEAN: Whether to display each TRUNCATE TABLE statement before executing it. Example mysql> CALL ...
https://dev.mysql.com/doc/refman/9.7/en/view-updatability.html
Some views are updatable and references to them can be used to specify tables to be updated in data change statements. That is, you can use them in statements such as UPDATE, DELETE, or INSERT to update the contents of the underlying table. Derived ...