Spring-4-database connection pool, JDBC Template, transaction control

The content of the content 1. Database connection pool * concept and function         * C3P0         * Druid * Custom JDBC tool class     2. Spring JDBC : JDBC Template 3. Transaction control in Srping##Database connection pool 1. Concept: in fact, it is a container (Collection) for database connecti ...

Posted by brewfan9 on Sat, 14 Mar 2020 11:51:54 +0100

Oceanbase version 2.2 experience: running TPC-C with BenchmarkSQL

OB Jun: good news! "Oceanbase version 2.2" is officially launched on the official website! (click to read the original text and download it directly) OceanBase 2.2 is a stable version that successfully supports tmall double 11 in 2019, and it is also the version used for TPC-C testing and ranked first in TPC-C performance. We will con ...

Posted by bamfon on Fri, 13 Mar 2020 11:36:25 +0100

Why not create a column with ANSI? Padding set to OFF?

SQL Prompt is a practical SQL syntax prompt tool. It searches automatically according to the object name, syntax and code fragment of the database, and provides users with appropriate code selection. Automatic script settings make code easy to read - especially useful when developers are not familiar with scripts. This article describes not to ...

Posted by MrXander on Thu, 12 Mar 2020 13:13:27 +0100

Java Monomer Application-Architecture Mode-03.Design Mode-01.Factory Mode

Original address: http://www.work100.net/training/monolithic-architecture-design-patterns-factory-pattern.htmlMore Tutorials: Beam Cloud - Free Course Factory Mode Sequence Number Intratext chapters video 1 Summary - 2 Realization - See the navigation section above for reading 1. Overview Factory Pattern is one of the most common des ...

Posted by lukegw on Wed, 11 Mar 2020 23:13:53 +0100

Read the summary of chapter 11.3.2 The CHAR and VARCHAR Types in the official MySQL 5.7 document

Author: Wei Xinping, the 5th MySQL practical class student of zhishutang, the 10th MySQL optimization class student, now works as a teaching assistant. Maximum length of varchar(n) and char(n) I believe that as a dba, it is often asked this question. What is the maximum length. How many bytes or how many characters. In fact, this is not very ...

Posted by Andre_Ng on Wed, 11 Mar 2020 12:59:35 +0100

High performance mysql - group replication of MySQL (full synchronous replication)

Article directory 1. Basic concepts of full synchronous replication (Group replication) 1.1 group replication model: 1.2 group replication principle: 2. Realize group replication server1: (initiating node) Configure on server2 and server3: Test: 1. Basic concepts of full synchronous replicat ...

Posted by shadow_blade47 on Wed, 11 Mar 2020 12:22:55 +0100

Build mysql NDB cluster

NDB cluster installation introduce https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-basics.html NDBCLUSTER (also known as NDB )Is a memory storage engine that provides high availability and data persistence. Of NDBCLUSTER The storage engine can be configured with a range of failover and load balancing options, but the simplest is to start ...

Posted by al3x8730 on Wed, 11 Mar 2020 10:41:43 +0100

Initial installation experience of GaussDB 100 stand alone

The traditional database technology based on single machine has been unable to support the access processing of massive data. In this case, the database cluster gausdb 100, which supports the high expansion of the system and strong consistency of the sub database and sub table Sharding architecture, came into being. It is a distributed system ...

Posted by vinylblare on Wed, 11 Mar 2020 06:22:49 +0100

Module 3, week 2, assignment 2, bidding website

1 problem description Using the Scrapy framework, complete the collection of bidding information on the Internet. The collection fields are as follows: 2 Tips for problem solving Some pages of the Internet must be logged in to get response. You need to log in manually and get the Cookie value in t ...

Posted by redmonkey on Tue, 10 Mar 2020 11:21:39 +0100

Add, delete, modify and query 2 of MySQL table

1. Database Constraints 1.1 NULL constraint When creating a table, you can specify that a column is not empty: -- Reset student table structure DROP TABLE IF EXISTS student; CREATE TABLE student ( id INT NOT NULL, sn INT, name VARCHAR(20), qq_mail VARCHAR(20) ); 1. ...

Posted by herod1 on Tue, 10 Mar 2020 05:55:32 +0100