Mybatis framework technology summary, how to write efficient SQL

3.3,SqlSessionFactory SqlSessionFactory has multiple methods to create SqlSession instances, including the following two: SqlSessionFactory.openSession: a transaction will be started by default, but the transaction will not be submitted automatically, which means that the transaction needs to be submitted manually before the update operati ...

Added by chodges on Wed, 15 Dec 2021 08:33:06 +0200

Percona XtraBackup 8.0.26 instructions for use

Welcome to the MySQL technical articles shared by the great SQL community. If you have any questions or want to learn, you can leave a message in the comment area below. After seeing it, you will answer itPercona XtraBackup feature descriptionPercona Xtrabackup backup recovery permission restrictionsCreate backup users, configuration parameters ...

Added by Rollo Tamasi on Wed, 15 Dec 2021 07:48:18 +0200

How to troubleshoot the SQL statement in SAP HANA Database Explorer

Troubleshoot SQL with SAP HANA Database Explorer The debugger can be used to help find problems in procedures, functions, or anonymous blocks. The following steps demonstrate how to use the debugger to debug the process. Select a stored procedure, right-click it, and select Open for debugging: From the debugger attach Options dialog box, e ...

Added by intermediate on Wed, 15 Dec 2021 05:27:03 +0200

MyBatis - underlying source code analysis - (detailed), Java development for three years, the monthly salary is only 12K

} else { /** * The following code shows that only one of the three attributes of url resource class can be selected, otherwise an error will be reported */ throw new BuilderException("A mapper element may only specify a url, resource or class, but ...

Added by JoCitizen on Wed, 15 Dec 2021 02:39:38 +0200

[Flink] source code Notes - Analysis and operation principle of Flink SQL

1. IntroductionSqlClient is an SQL command line interaction tool provided by Flink. When downloading the blink binary package, there is a SQL client in its bin directory SH, you can enter the interactive page by starting the script. The specific source code implementation of SqlClient can be found under the Flink SQL client sub module of the Fl ...

Added by refined on Tue, 14 Dec 2021 09:46:13 +0200

mysql syntax notes

1, Simple search 1. Fuzzy condition query For search function Example: find out which names contain the letter e select *from emp where ename like '%e%'; Exercise: query the employees whose names end with e select *from emp where ename like '%e'; Query the employee whose last character in the name is e select *from emp where ename li ...

Added by poison on Thu, 09 Dec 2021 06:47:29 +0200

Database experiment VI integrity language experiment

1. Experimental purpose Master the definition and maintenance methods of entity integrity, reference integrity and user-defined integrity.     2. Experimental contents and requirements Define entity integrity and delete entity integrity. Be able to write two ways to define entity integrity   SQL   Statement: define e ...

Added by Alienware on Wed, 08 Dec 2021 09:06:24 +0200

Wan Da #12, how can the MGR cluster automatically select the master without manual intervention

Welcome to the MySQL technical articles shared by the great SQL community. If you have any questions or want to learn, you can leave a message in the comment area below. After seeing it, you will answer itThis article is reproduced from the official account of WeChat, "old leaf teahouse".After the whole MGR cluster is hung up, the mas ...

Added by carichod on Tue, 07 Dec 2021 15:20:57 +0200

Technology sharing MySQL caching_ sha2_ Analysis of abnormal password authentication

Welcome to the MySQL technical articles shared by the great SQL community. If you have any questions or want to learn, you can leave a message in the comment area below. After seeing it, you will answer it0. IntroductionWith the same account and password, the manual client connection can succeed, but it fails through MySQL Connectors. Why?1. Ph ...

Added by Stunt on Tue, 07 Dec 2021 13:19:15 +0200

MySQL notes 4 - table creation, addition, deletion and modification

9 establishment, addition, deletion and modification of table 9.1 table creation (table creation) Syntax format of table creation: (table creation belongs to DDL statement, and DDL includes: create drop alter) create table Table name(Field name 1 data type, Field name 2 data type, Field name 3 data type); create table Table name( Field na ...

Added by sheen.andola on Sun, 05 Dec 2021 02:28:25 +0200