python Foundation (36):pymysql module
1. pymysql module
Before using pymysql module, you need to learn database MySQL: MySQL Foundation.
1.1 download and use of pymysql
After reading the MySQL foundation, we all operate the database through mysql, the command-line client tool of MySQL. How to operate the database in the python program? This uses the pymysql module, which is essent ...
Posted by gazever on Thu, 21 Nov 2019 02:46:11 -0800
web framework Spring+SpringMvc+Jpa pure annotation building
0.jar package depends on maven pom.xml
<properties>
<spring_version>4.3.25.RELEASE</spring_version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
...
Posted by zedan_80 on Wed, 20 Nov 2019 12:34:00 -0800
Detailed JDBC implementation process (add, delete, modify and check)
I. create a table in the database
In this example, MySQL database management system is used. In order to facilitate the operation, Navicat Premium, a graphical interface, is used to operate mysql. The following is the table creation statement:
use test;//Using the test database
create table user_info(//Create a table in the ...
Posted by ntg on Wed, 20 Nov 2019 09:26:43 -0800
SQL injection violation, multi statement not allow final solution
Solutions:
1. The code reports an error. The operation causing the exception is batch update. The definition of the Bean is related to Druid as follows:
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
<property name="driverClassName" value="${db.driverClassName}"/&g ...
Posted by pakmannen on Wed, 20 Nov 2019 06:28:59 -0800
Using PHP+Redis to delay tasks and automatically cancel orders
Simple timing task solution: when using redis's keyspace notifications, you need to note that this function is launched after redis version 2.8, so the reids on your server should be at least 2.8 or above;
(A) business scenario:
1. When a business is triggered, a scheduled task needs to be started, and another task needs to be executed within t ...
Posted by Sanjib Sinha on Wed, 20 Nov 2019 00:18:31 -0800
Mairadb source compilation and installation
Source compilation and installation of Mairadb
1. Install the dependent components required by the environment first
[root@node6 ~]# yum -y install bison bison-devel zlib-devel libcurl-devel \
libarchive-devel boost-devel gcc gcc-c++ cmake ncurses-devel gnutlsevel \
libxml2-devel openssl-devel libevent-devel libaio-devel
2. Create required us ...
Posted by Martin18 on Mon, 18 Nov 2019 08:09:33 -0800
Several practical functions of FreeSql v0.11
FreeSql has been open source for nearly a year, and is determined to become a convenient and easy-to-use ORM for. Net platform. Warehouse address: https://github.com/2881099/FreeSql
With the continuous iterative updating, it becomes more and more stable and powerful. It is expected to release the official version of 1.0 on the first anniversary ...
Posted by LApprenti Sorcier on Mon, 18 Nov 2019 00:06:48 -0800
Commands out of sync; you can't run this command now
If you use mysqli's query method to get the result, you will get an error: Commands out of sync; you can't run this command now sss
Stored procedure:
CREATE PROCEDURE test1()
begin
drop table if exists tb1;
create table tb1
(
val int not null
)engine = innoDB;
insert into tb1(val) values(1),(2),(3) ...
Posted by shoz on Sun, 17 Nov 2019 12:29:04 -0800
Error 1146 table doesn't exist
Solution to the problem that prompt table does not exist because of copying database directly
After the computer reinstalls the system and copies the original mysql data into it, most of the tables can be accessed, but several tables prompt that the tables do not exist:
error: 1146: Table 'your_table' does ...
Posted by intercampus on Sun, 17 Nov 2019 11:25:56 -0800
Spring JDBC Implementation for Spring Applications
Getting started with the jdbcTemplate class
Mode 1
POM.XML
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId& ...
Posted by mrman23 on Sun, 17 Nov 2019 09:02:45 -0800