Quick start to basic operation of mysql-8.0.18
Quick start to mysql-8.0 basic operation
1 mysql download and installation
Go to mysql official website Download the corresponding version. The version I choose is mysql-8.0.18-winx64
Unzip the downloaded package, enter the internal bin directory in the cmd window, and start the mysql background ser ...
Posted by piyush23424 on Wed, 29 Jan 2020 18:00:39 +0100
Mysql5.7.11 source code deployment
Put a Mysql5.7.11 installation package address first
Link: https://pan.baidu.com/s/17FF4CkWSeknOgctyo4Cdxg
Extraction code: y891
[root@hadoop001 local]# rpm -qa|grep -i mysql uninstall if there are components
[root@hadoop001 local]# rpm -qa|grep -i mariadb uninstall if there are components
[root@hadoop0 ...
Posted by jarv on Wed, 29 Jan 2020 17:40:38 +0100
Detailed steps of configuring MySQL master slave for Windows server 2012 R2
title: Windows configures mysql master-slave replication
date: 2019-09-21 08:45:18
tags: MySQL
Environmental Science:
mysql 8.0.17
windows 10
1. Install two mysql on the same machine
Install slightly...
Here are different ports, 33063307
2. master configuration:
1. Configure my.ini
my.ini pro ...
Posted by foamypup on Mon, 27 Jan 2020 15:57:17 +0100
Add record code for the development of plug-in of UE4 connecting MySQL database
In this article, we first talk about the function of each part of the code in the previous article, then add the code to store data in the database in the SqlBlueprintFunctionLibrary class, and introduce how to add comments and expose them to the blueprint.
1. CAPI is a packaged third-party libr ...
Posted by phpsharma on Sun, 26 Jan 2020 13:51:20 +0100
A simple personal blog database
Simple personal blog database: Exercises
Analysis of personal blog database
Function module introduction
user management
Bowen management
Comment system
Classified management
Label management
Mind mapping
mysql code
Analysis of personal blog database
Function module introduction
User manag ...
Posted by sneamia on Sun, 26 Jan 2020 12:33:01 +0100
Lesson 097 php database programming ⑨ - using mysqli extension library (batch execution and transaction control)
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* check connection */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$query = "SELECT CURRENT_USER();";
$query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";
/* execute multi query */ ...
Posted by andymelton on Sat, 25 Jan 2020 16:06:31 +0100
Flink uses Broadcast State to realize real-time update of streaming configuration
Source link: http://shiyanjun.cn/archives/1857.html , thanks for sharing.
Broadcast State is an Operator State supported by Flink. Using Broadcast State, you can input data records in a Stream of Flink program, and then broadcast these data records to each Task downstream, so that these data records ...
Posted by ryan.od on Tue, 21 Jan 2020 07:03:21 +0100
vue+node+mysql to display data in pages
Why do we use paging display data? If we request all the data from the server at one time, the large amount of data will block the server and improve the performance. Therefore, we need to use paging display data. When we use the data of the current page of the table, we can send a request for the corre ...
Posted by dineshthakur on Mon, 20 Jan 2020 18:33:18 +0100
Teachers don't have to worry about my curriculum design anymore -- using Java + MySQL to implement a student information management system
This article is the author's work in the course design. It is mainly published to share the following learning results with you. If there is any omission, please spray lightly
Not much nonsense, first of all, source code
Student information management system implemented by Java + MySQL
This blog is just ...
Posted by britt15 on Mon, 20 Jan 2020 15:38:09 +0100
MySQL dual database construction
1. Build MySQL master-slave database
Refer to another blog post of the authorhttps://blog.csdn.net/weixin_37838921/article/details/104033403
2.MySQL dual machine environment
role
IP
OS/MySQL version
master1
192.168.11.10
CentOS7 / MySQL5.7
master2
192.168.11.30
CentOS7 / MySQL5.7
3. MyS ...
Posted by thegreatone2176 on Mon, 20 Jan 2020 09:33:42 +0100