Search



Search Results
Displaying 1541 to 1550 of 3567 total results
https://dev.mysql.com/doc/connectors/en/connector-net-entityframework-core.html
optionsBuilder.UseMySQL("server=localhost;database=library;user=user;password=password"); } Limitations The Connector/NET implementation of EF Core has the following limitations: Memory-Optimized Tables is not supported. MySQL Connector/NET ...
https://dev.mysql.com/doc/connectors/en/connector-net-programming-datetime-restricting.html
The best solution to the date problem is to restrict users from entering invalid dates. Users of MySQL 5.0.2 and higher can use the new traditional SQL mode to restrict invalid date values. This can be done on either the client or the server side.
https://dev.mysql.com/doc/connectors/en/connector-net-programming-getschema.html
The following are the collections currently provided by Connector/NET, in addition to the common collections shown previously: Databases Tables Columns Users Foreign Keys IndexColumns Indexes Foreign Key Columns UDF Views ViewColumns Procedure ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-connection-without-dsn.html
Here are the connection strings for Connector/ODBC using DSN-less connections: For Connector/ODBC 9.3: ConnectionString = "DRIVER={MySQL ODBC 9.3 Unicode Driver};\ SERVER=localhost;\ DATABASE=test;\ USER=venu;\ PASSWORD=venu;\ FOUND_ROWS=1;" ... You ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-configuration-dsn-unix.html
On Unix, you configure DSN entries directly in the odbc.ini file. For example, if your odbc.ini file is located in /usr/local/etc, set the environment variables like this: export ODBCINI=/usr/local/etc/odbc.ini export ODBCSYSINI=/usr/local/etc .
https://dev.mysql.com/doc/connectors/en/connector-odbc-reference-api.html
SQLConnect Yes ISO 92 Connects to a specific driver by data source name, user ID, and password. SQLDriverConnect Yes ODBC Connects to a specific driver by connection string or requests that the Driver Manager and driver display connection dialog ...
https://dev.mysql.com/doc/connectors/en/connector-odbc-support-community.html
Community support from experienced users is also available through the ODBC Forum. You may also find help from other users in the other MySQL Forums, located at http://forums.mysql.com.
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysql-connector-connect.html
A connection with the MySQL server can be established using either the mysql.connector.connect() method or the mysql.connector.MySQLConnection() class: cnx = mysql.connector.connect(user='joe', database='test') cnx = MySQLConnection(user='joe', ...
https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlconnection-set-charset-collation.html
In the following example, we set the character set to latin1 and the collation to latin1_swedish_ci (the default collation for: latin1): >>> cnx = mysql.connector.connect(user='scott') >>> cnx.set_charset_collation('latin1') Specify a given ...
https://dev.mysql.com/doc/connector-net/en/connector-net-connections-errors.html
Contact administrator") Case 1045 MessageBox.Show("Invalid username/password, please try again") End Select End Try Important If you are using multilanguage databases then you must specify the character set in the connection string. Because ...
Displaying 1541 to 1550 of 3567 total results