Druid database connection pool

1, What is Druid? 1.1 concept Druid is a database connection pool implementation on Alibaba's open source platform. It combines the advantages of C3P0, DBCP, Proxool and other DB pools, and adds log monitoring. It can well monitor the connection of DB pool and the execution of SQL. It can be said that it is a DB connection pool for monitoring ...

Added by psy on Tue, 08 Mar 2022 10:22:45 +0200

Database design of commodity management system -- SQL Server

Links 1. Database design of student achievement management system - MySQL Database design of student achievement management system - MySQL 2. Medical information management system database – MySQL Medical information management system database – MySQL 3. Mail management database design – MySQL Mail management databas ...

Added by antonbrk on Wed, 16 Feb 2022 14:06:05 +0200

SQL sever basic learning 3 (aggregation and sorting)

I Aggregate query Aggregate functionmeaningcount()Calculate the number of records (rows) in the tablesum()Calculate the total value of the values in the value column in the tableavg()Calculate the average of the data in the value column in the tablemax()Find the maximum value of data in any column in the tablemin()Find the minimum value of d ...

Added by Christopher on Wed, 16 Feb 2022 11:43:43 +0200

Summary of operation methods in database

Methods in the database: DDL: operation database and table 1. Operation database: CRUD 1. C(Create):establish * Create database: * create database Database name; * Create a database, judge that it does not exist, and then create: * create database if not exists Database name; * Create a database and specify a character set ...

Added by yelvington on Sun, 13 Feb 2022 07:41:54 +0200

sql server basic command statement

1, Create library and table classes create database a;//Create database //Create table create table name( Field name char(10), Field name 2 char(10) ) drop Command is also the method of use 2, Modify table data alter sentence //Delete column alter table student drop column Field name; //Add column alter table student add column Field na ...

Added by aeafisme23 on Fri, 04 Feb 2022 14:23:43 +0200

Database Base Exercises!

MySQL database basic topic is coming! Hee-hee, this term I learned the fundamentals of MySQL database, and then I have sorted out some simple questions that are useful for MySQL database, I hope you can help! Say nothing, go dry! Table structure management 1. Objectives 1. Creation and deletion of MySQL database 2. Create, modify, delete ...

Added by TLawrence on Tue, 01 Feb 2022 15:38:53 +0200

. NET medium and large project development essential -- efficient paging

Related downloads: DeveloperSharp.dll component DeveloperSharp.dll component Efficient paging - sample code (dp8 paging. RAR)Efficient paging - sample code (dp8 paging. RAR)   Data paging is a necessary function of almost any application system. However, when the amount of data is large, the efficiency of paging operation will become very low. ...

Added by santhosh_89 on Fri, 21 Jan 2022 12:16:09 +0200

Necessary for medium and large-scale project development of. NET -- ORM database access technology

Related downloads: DeveloperSharp.dll component DeveloperSharp.dll component   Common ORM technologies (such as Entity Framework, Dapper, SqlSugar, NHibernate, etc.) are either making procedural variants of Sql statements or object-oriented Sql statements. The disadvantages are obvious: it is difficult to popularize and apply simple Sql stateme ...

Added by manishdugar on Thu, 20 Jan 2022 05:03:40 +0200

[Java][SQL Server][Tomcat] Java local server reads data and account password checks in SQL Server

Foreword: This small project uses Java Tomcat local server to realize the function of reading SQL Server data and comparing the input account password with the existing account password in the database. Java source code download link: (Resources pending review) 1 System overview 1.1 System Introduction Based on the WeChat applet, we can easi ...

Added by Ashoar on Thu, 20 Jan 2022 01:35:21 +0200

Database Experiment 4: view and database security

Database Experiment 4: view and database security [purpose and requirements of the experiment] 1. Understand the SQL view and its difference from the basic table; 2. Master the definition, query and update of SQL view; 3. Master the management methods of users and permissions in SQL Server; 4. Master the control function of SQL language; 5. De ...

Added by Roberto on Wed, 19 Jan 2022 14:05:39 +0200