redis series (2) - syntax and commands
redis series articles:redis series (1) - installation and startupredis series (2) - syntax and commands
1. Brief description
The key value types supported by Redis are String character type, map hash type, list list list type, set collection type, sortedset ordered collection type.This article summarizes the use of these key value types and i ...
Posted by bellaso on Tue, 21 May 2019 11:12:48 -0700
ORACLE Stored Procedures Use Skills & Cursor Skills
Change from:
http://www.cnblogs.com/chinafine/archive/2010/07/12/1776102.html
Stored procedures are the most common things we deal with in pl/sql programming. The structure of stored procedures is very simple. In addition to learning the basic structure of stored procedures, we will also learn some practical knowledge about how to write store ...
Posted by mikesch on Sun, 14 Apr 2019 21:51:33 -0700
Remember the humiliation caused by multiple IQ Dropouts
IQ is the key to mixing up. IQ offline always complicates a simple thing, which leads to more time spent doing bad things. Recently, I happened to encounter such an experience. I wrote it down to remind myself.
First Question Feedback
Feedback from the company's technical clothes, the company's products in the process of using the wrong quer ...
Posted by edwardp on Tue, 09 Apr 2019 20:00:32 -0700
The method of using ADO to operate database in VC (more detailed)
Reference resources: http://blog.csdn.net/augusdi/article/details/7005597 Some additions and deletions were made.
Dead work:
(1) Introducing ADO classes
#import "c:\program files\common files\system\ado\msado15.dll" no_namespace rename ("EOF", "adoEOF")
(2) Initialization of COM
AfxOleInit() can be used in MFC.
Use CoInitia ...
Posted by WickedStylis on Sun, 07 Apr 2019 22:00:31 -0700
MySQL
MySQL
Open source relational database management system
Chapter 1 Installation
MSI installation Website downloaded on the official website
After downloading, install next all the way. The installation path defaults to c: Program Files MySQL, when there is no data folder in the MySQL Server 5.7 bin directory.
Configure the environment o ...
Posted by StevenJ on Mon, 01 Apr 2019 01:03:30 -0700
Assignment of row set functions using CONTAINSTABLE and FREETEXTTABLE
CONTAINSTABLE and FREETEXTTABLE functions are used to specify full-text queries that return relative rankings for each row. These two functions are similar to full-text predicates CONTAINS and FREETEXT, but they are used differently.
Distinguishing Full-text Predicates from Functions
Although full-text predicates and full-text assignment row ...
Posted by goosez22 on Thu, 28 Mar 2019 18:39:29 -0700
Conversion from 10 to 33
1, start
I saw this question post on CSDN yesterday:< Writing a stored procedure from 10 to 33 in SQL The question of the original post is as follows:
Urgently seek 10-to-33-digit code.
I want to create a stored procedure "T10TO33" in SQL to convert 10-digit data into 33-digit data.
The 33-ary rule is: 1,2,3,4,5,6,7,8,9,A,B, ...
Posted by koolswans on Sun, 24 Mar 2019 23:09:29 -0700
Basic Skills of Oracle's Prelude of PL/SQL Programming
Oracle's Basic Skills for Preluding PL/SQL Programming
1 > Write package specifications and packages, which contain stored procedures and functions.
create or replace package emp_action_pkg is
v_deptno number(3):=20;
-----Define a process for adding employees
procedure newdept(
p_deptno dept.deptno%Ty ...
Posted by Sphynx on Thu, 21 Mar 2019 14:24:51 -0700
net Connects Oracle Database through ODP.NET Managed
1. Download and install ODT for VS2015_121025 to restart VS on Oralce's official website
2. Project reference Oracle.ManagedDataAccess.dll
3. Database connection string: user id = xxxx; password = xxxx; data source = 192.168.0. xxx: 1521/orcl (database name)
4. Use method:
OracleConnection con = new OracleConnection();
con.ConnectionStri ...
Posted by mukeshgulia on Thu, 07 Feb 2019 00:27:17 -0800
Calling PL/SQL stored procedures in oracle pro*c
Test environment:
Server: oracle server in docker, service name is jaw, reference Docker Installation of oracle and mysql under unbuntu
Client: instantclient client client, reference Create a streamlined version of oracle client and pro*c compiler environment under ubuntu
Configure the service name XE in / opt/oracle/product/network/admin/tn ...
Posted by ntnwwnet on Wed, 06 Feb 2019 13:48:16 -0800