ProxySQL cluster configuration
ProxySQL cluster
Experimental environment informationMySQL master-slave information
IP 1
role
188.188.0.68
Node1
188.188.0.69
Node2
188.188.0.70
Node3
ProxySQL service node
IP 1
role
188.188.0.68
Node 68
188.188.0.71
Node 71
ProxySQL version: 2.0.3-29-g00f26d5
1, ProxySQL service installation
Install the same version of P ...
Posted by rbarnett on Wed, 29 Apr 2020 03:26:43 -0700
Clickhouse support of ProxySQL configuration
13. Clickhouse support for proxysql configuration
Note: during the writing time of the article from April 201904 to may 201905, subsequent official updates in github were not written
~~ClickHouse Support
1, Preface
ProxySQL support for ClickHouse is still in the experimental phase and may change.
1. How to enable support for ...
Posted by swathin2 on Wed, 29 Apr 2020 00:00:06 -0700
The third stage of Java learning (8: network communication protocol, UDP and TCP protocol)
1, Network communication protocol
1. Concept:
Through computer network, multiple computers can be connected. Computers in the same network need to abide by certain rules when connecting and communicating. In computer network, these rules of connection and communication are called network communicati ...
Posted by Eal on Fri, 24 Apr 2020 10:17:39 -0700
where clause of Oracle
The where clause is used to find records from tables or temporary datasets that meet the specified conditions, and can be used for conditions in select, update, and delete statements.
1, Generate test data
Use the following SQL to create the super girl basic information table (t? Girl) and insert some test data.
create table T_GIRL
(
id ...
Posted by banacan on Thu, 23 Apr 2020 05:19:05 -0700
Design mode of Solidity written by smart contract | FISCO BCOS hypertext blockchain special session (Part 4)
Preface
With the development of blockchain technology, more and more enterprises and individuals begin to combine blockchain with their own business.
The unique advantages of blockchain, such as transparent and tamper proof data, can bring convenience to business. But at the same time, there are some hidden dangers. The data is open and transp ...
Posted by little_webspinner on Sun, 19 Apr 2020 04:50:44 -0700
MyBatis+Oracle in the execution of insert time and space value error reporting: source code to find solutions
To facilitate the test, the Demo code is given first:
mybatis-oracle-config.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
3 "http://mybatis.org/dtd/mybatis-3-config.dtd">
4
5 <configuration>
6 <properties>
7 <property nam ...
Posted by SirChick on Wed, 15 Apr 2020 08:12:25 -0700
Oracle Foundation (common functions and type conversions)
This article mainly talks about the functions commonly used in Oracle, as well as the knowledge of type conversion.
Note: date type is troublesome, but date format is indispensable in practical application.
Single-Row Functions
Single line function: only one parameter input and only one result output
--1,Study lower/upper/initcap Function ...
Posted by Avi on Tue, 14 Apr 2020 11:45:13 -0700
Source code analysis of Mybatis+Oracle with insert null error reporting
In order to facilitate SEO search, first of all, post the error content
Different versions of Oracle drivers will report different errors
1 <dependency>
2 <groupId>com.oracle</groupId>
3 <artifactId>ojdbc6</artifactId>
4 <version>1.0</version>
5 </dependency>
The error is reported as ...
Posted by cliffboss on Tue, 14 Apr 2020 11:36:29 -0700
Two SQL errors (invalid column types: getTimestamp not implemented and ORA-00984: columns are not allowed here)
uncategorized SQLException; SQL state [99999]; error code [17004]; invalid column type
Error phenomenon
Invalid column type: getTimestamp not implemented for class oracle.jdbc.driver.T4CNumberAccessor
; uncategorized SQLException; SQL state [99999]; error code [17004]; Invalid column type: getTimestamp not implemented for class oracle.jdbc.driv ...
Posted by geo3d on Mon, 06 Apr 2020 07:05:29 -0700
Gradle this article is enough for 08 wrapper
Use of wrapper
Gradle Wrapper is the recommended usage of gradle. This article will illustrate how to use it with specific examples.
Gradle Wrapper
The Gradle Wrapper is actually a script, which can be used to download and use the specified version of gradle. It can be downloaded before use as required, effectively avoiding environment consiste ...
Posted by jfontein on Sun, 05 Apr 2020 18:29:11 -0700