Search Results
                    
                    
            https://dev.mysql.com/doc/relnotes/connector-j/en/news-8-0-24.html
                                (Bug #32526663, Bug #102188) When using Connector/J 8.0.23, ResultSetMetaData.getColumnClassName() did not return the correct class name corresponding to DATETIME columns. (Bug #32405590, Bug #102321) Creation of an UpdatableResultSet failed with a ... Version 8.0.24 is the latest General Availability release of the 8.0 series of MySQL ...
                                            
                https://dev.mysql.com/doc/relnotes/mysql-shell/9.5/en/news-9-5-0.html
                                (Bug #38377905) When dumping with ocimds: true, schemas and tables with ENCRYPTION disabled were updated and reported as modified, creating logging noise, even though MySQL HeatWave Service disallows enabling the statement and does not generate ...
                                            
                https://dev.mysql.com/doc/heatwave/en/mys-hw-varlen-encoding.html
                                 Variable-length encoding is automatically applied when tables are loaded into MySQL HeatWave with the exception of string columns defined explicitly as dictionary-encoded columns. Minimizes the amount of data stored for string columns by ...You can ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/load-xml.html
                                Tags are matched based on the tag or attribute name and the column name. User variables can be especially useful when you want to insert data from an XML file into table columns whose names do not match those of the XML fields. You can work around ...The tagname in the optional ROWS IDENTIFIED BY clause must also be given as a literal string, and must be surrounded by angle brackets (< and ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/numeric-type-syntax.html
                                If you specify ZEROFILL for a numeric column, MySQL automatically adds the UNSIGNED attribute to the column. For example, applications could use the LPAD() function to zero-pad numbers up to the desired width, or they could store the formatted ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/partitioning-types.html
                                This type of partitioning assigns rows to partitions based on column values falling within a given range. For information about an extension to this type, RANGE COLUMNS, see Section 26.2.3.1, “RANGE COLUMNS partitioning”. Similar to partitioning ... This section discusses the types of partitioning which are available in MySQL ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/set.html
                                SET column values that consist of multiple set members are specified with members separated by commas (,). For example, a column specified as SET('one', 'two') NOT NULL can have any of these values: '' 'one' 'two' 'one,two' A SET column can have a ... A SET is a string object that can have zero or more values, each of which must be chosen from a list of permitted values specified when the table is ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-net-entityframework-core-charset.html
                                Modifications made to the model affect the tables and columns generated from your code. In the following example, the ComplexKey class represents an entity (or table) and Key1, Key2, and CollationColumn represent entity properties (or columns). 
                                            
                https://dev.mysql.com/doc/connectors/en/connector-net-tutorials-entity-framework-databinding-linq-entities.html
                                The added GridView control produced a grid with three columns (Column0, Column1, and Column3) and the string abc in each cell of the grid. This method is called when a user selects an item in the list control and thus generates an AutoPostBack event. The following figure shows Belgium selected from the list box and a table with three columns: Name, Population, and ... In this tutorial you ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-python-api-mysqlcursor-lastrowid.html
                                 Syntax: id = cursor.lastrowid This read-only property returns the value generated for an AUTO_INCREMENT column by the previous INSERT or UPDATE statement or None when there is no such value available. For example, if you perform an INSERT into a ...