Search Results
https://dev.mysql.com/doc/connector-net/en/connector-net-programming-datetime-null.html
As such, when assigning values from a query to a DateTime variable, you must first check whether the value is in fact NULL.
https://dev.mysql.com/doc/connector-odbc/en/connector-odbc-installation-binary-windows-debug.html
The associated Debug files are bundled in its own Zip file, including two lib/ directories: lib/: PDB files to use with regular builds; they are built in RelWithDebInfo mode. Debug/lib/: Debug builds built in Debug mode; includes driver, PDB files, ...
https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-time-zone.html
This property is used to set or retrieve the time zone session variable for the current connection. >>> cnx.time_zone = '+00:00' >>> cursor = cnx.cursor() >>> cursor.execute('SELECT NOW()') ; cursor.fetchone() (datetime.datetime(2012, 6, 15, 11, ...
https://dev.mysql.com/doc/connector-python/en/connector-python-cext-module.html
For example: import _mysql_connector ccnx = _mysql_connector.MySQL() ccnx.connect(user='scott', password='password', host='127.0.0.1', database='employees') ccnx.query("SHOW VARIABLES LIKE 'version%'") row = ccnx.fetch_row() while row: print(row) ...
https://dev.mysql.com/doc/connector-python/en/connector-python-multi.html
Users must quote these when included in multi statements for other purposes different from declaring an actual statement delimiter; such as names for tables, columns, variables, in comments, and so on. Connector/Python can execute either a single ...
https://dev.mysql.com/doc/internals/en/cmake-howto-quick-release-configuration.html
Unix (Makefiles) To control which compiler is chosen, set the CC and CXX environment variables to name the desired C and C++ compilers. (This is optional, but if you have different versions of the compilers, it gives better control.) mkdir bld cd ...
https://dev.mysql.com/doc/internals/en/com-change-user.html
COM_CHANGE_USER changes the user of the current connection and reset the connection state. and others It is followed by the same states as the initial handshake.
https://dev.mysql.com/doc/internals/en/controlling-compilers-and-flags.html
To define which C and C++ compilers to use, you can define the CC and CXX environment variables. For example: shell> CC=gcc shell> CXX=g++ shell> export CC CXX To specify your own C and C++ compiler flags, for flags that do not affect optimization, ...
https://dev.mysql.com/doc/internals/en/create.html
Synopsis virtual int create ( name, form, info); const char * name ; TABLE * form ; HA_CREATE_INFO * info ; Description This is the create method. When create() is called you do not need to open the table. Also, the .frm file will have already been ...
https://dev.mysql.com/doc/internals/en/delete-table.html
Synopsis virtual int delete_table ( name); const char * name ; Description This is the delete_table method. By the time delete_table() has been called all opened references to this table will have been closed (and your globally shared references ...