Search Results
https://dev.mysql.com/doc/connectors/en/connector-net-programming-stored-proc.html
A stored procedure is a set of SQL statements that is stored in the server. Clients make a single call to the stored procedure, passing parameters that can influence the procedure logic and query conditions, rather than issuing individual hardcoded ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-usagenotes-apptips-microsoft.html
If you still get the error Another user has changed your data after adding a TIMESTAMP column, the following trick may help you: Do not use a table data sheet view. Or you might run low on virtual memory and eventually get an ODBC Query Failed error ... The majority of Microsoft applications have been tested with Connector/ODBC, including Microsoft Office, Microsoft Access and the various programming languages supported within ASP and Microsoft Visual ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-crystal-displaying.html
To display a report we first populate a data set with the data needed for the report, then load the report and bind it to the data set. Finally we pass the report to the crViewer control for display to the user. The following references are needed ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-stored-proc.html
A stored procedure is a set of SQL statements that is stored in the server. Clients make a single call to the stored procedure, passing parameters that can influence the procedure logic and query conditions, rather than issuing individual hardcoded ...
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-tracing-mysql-custom-listeners.html
This value is defined by the MySqlTraceEventType public enum contained in the Connector/NET code: public enum MySqlTraceEventType : int { ConnectionOpened = 1, ConnectionClosed, QueryOpened, ResultOpened, ResultClosed, QueryClosed, ... To build ...
https://dev.mysql.com/doc/internals/en/guided-tour-chunk.html
if (updated && (error <= 0 || !transactional_table)) { mysql_bin_log.write(&qinfo) && transactional_table); ... The entire routine has many error checks with handlers for improbable conditions, and showing multiple screens would be tedious, so we've ... Now, having finished with our bird's eye view of the source code from the air, let's take the perspective of the worms on the ground (which is another name for MySQL's developer staff -- turn on laugh track ...
https://dev.mysql.com/doc/internals/en/logging-transactions-rules-for-create-table-select.html
(R-log-create-select-statement-format) If logging in statement format (that is, one of the following holds: (1) @@SESSION.binlog_format=STATEMENT; (2) @@SESSION.binlog_format=MIXED and statement is safe): If there is an error, do not write anything.
https://dev.mysql.com/doc/ndbapi/en/mccj-clusterj-clusterjdatastoreexception.html
4.3.1.2.8 tableNotFound() public boolean tableNotFound(); tableNotFound() Table 4.5 tableNotFound() Parameter Description return true if the error is a "Table Not Found" condition Since 9.4.0 . The underlying cause of the exception is contained in ...
https://dev.mysql.com/doc/ndbapi/en/mgm-functions-cluster-log.html
A severity level is stored at position ndb_mgm_clusterlog_level; for example the error level is stored at position NDB_MGM_EVENT_SEVERITY_ERROR. Return value The number of returned severities, or -1 in the event of an error. Return value This ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-blobs-basic.html
*/ #ifdef _WIN32 #include <winsock2.h> #endif #include <mysql.h> #include <mysqld_error.h> #include <NdbApi.hpp> #include <stdlib.h> #include <string.h> /* Used for cout. */ void drop_table(MYSQL &mysql) { if (mysql_query(&mysql, "DROP TABLE ...