plSql Learning Log
Basic Grammar
Hello World of plsql
set serveroutput on
--Print Hello World
declare
--Explanation section(Variable, cursor or exception description)
begin
--Program body ( DML Statement)
dbms_output.put_line('Hello World');
end;
Use of basic variable types
-- Use basic variable types
declare
--Define basic variable types ...
Posted by Pie on Sun, 20 Feb 2022 02:39:01 +0100
This paper introduces a super convenient Go language ini configuration file parsing tool: wego/config
wego/config
introduce
wego/config is a GO language version of ini configuration file parsing tool. wego/config has the following characteristics: First prepare the app Conf configuration file:
1)Provided GetString,GetInt...as well as MustrString,MustInt...Function to facilitate the acquisition of configuration data.
2)Support through struct ...
Posted by keyser soze on Sun, 20 Feb 2022 02:37:00 +0100
centOs7 installation and configuration mysql
1, Installing YUM Repo
1. Download command:
wget https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
2, To install repo:
rpm -ivh mysql57-community-release-el7-9.noarch.rpm
[root@VM-0-10-centos server]# rpm -ivh mysql57-community-release-el7-9.noarch.rpm
warning: mysql57-community-release-el7-9.noarch.rpm: He ...
Posted by boby on Sun, 20 Feb 2022 02:35:06 +0100
Linux basic commands
Meaning of different file colors
Color modification:[root@fyr ~]# ls --color=no / / turn off color
[root@fyr ~]# ls --color=yes / / open color
Black: ordinary file (e.g. txt)Blue: folderSky blue: linked filesGreen: executableRed: compressed fileYellow: block device files (e.g. hard disk, U SB flash disk)
Expansion:
-Ordinary ...
Posted by Pro Ninja on Sun, 20 Feb 2022 02:04:38 +0100
Obtain the members of Domain Users of AD group according to the memberOf attribute
Background description
An LDAP Sync windows system application made by my department can upload user Directory Server data, including LDAP User and LDAP Group, to our products.
The application is developed with C# and uses C# system DirectoryServices. Protocols. DLL library (which provides a series of LDAP API s).
On my computer, the path ...
Posted by tapos on Sun, 20 Feb 2022 02:03:09 +0100
Front end project Packaging Optimization and launch
Front end project optimization and launch
Configure the webpack according to the actual situation of your project. Here is just a reference for understanding many functions on the line.
optimization problem
Project optimization strategy steps and detailed installation configuration
1.Generate packaged Report=>There are two ways to intuit ...
Posted by covert215 on Sun, 20 Feb 2022 01:52:54 +0100
Deploying yolov5 in linux server virtual environment & training your own data set
1, Virtual environment
1. Download conda (skip if conda already exists)
wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
2. Add permissions
chmod 777 Miniconda3-latest-Linux-x86_64.sh
3. Operation
sh Miniconda3-latest-Linux-x86_64.sh
(1) There will be two prompts in the middle. Press enter for the first on ...
Posted by gethinw on Sun, 20 Feb 2022 01:49:09 +0100
Function and scope of JavaScript Foundation
If you are Xiaobai, this set of information can help you become a big bull. If you have rich development experience, this set of information can help you break through the bottleneck 2022web full set of video tutorial front-end architecture H5 vue node applet Video + data + code + interview questions.
A trip to the Empire??
content
address ...
Posted by phpshift on Sun, 20 Feb 2022 01:48:28 +0100
APIs series web effects
catalogue
1, PC side web page effects
1. Element offset offset series
1.1 offset overview
1.2 difference between offset and style
Case: coordinates of the mouse in the box
Case: modal box drag
Case: imitation Jingdong magnifying glass effect
2. Element visual area client series
Case: Taobao flexible JS source code analysis
3. Element ...
Posted by dscapuano on Sun, 20 Feb 2022 01:40:37 +0100
Java magic class: Unsafe application analysis
catalogue
preface
Basic introduction
Function introduction
Memory operation
CAS related
Thread scheduling
Class correlation
Object operation
Array correlation
Memory barrier
System related
epilogue
reference material
Introduction to the author
preface
Unsafe is located in sun A class under misc package mainly provides some m ...
Posted by crucialnet on Sun, 20 Feb 2022 01:38:04 +0100