mybatis processes CLOB/BLOB type data
BLOB and CLOB are both large field types.
BLOB is stored by binary, while CLOB can store text directly.
Usually, information such as pictures, files, music and so on are stored in BLOB fields. First, the files are converted to binary and then stored in. Articles or longer text are stored in CLOB.
The corresponding types of BLOB and CLOB in ...
Posted by deadlyp99 on Wed, 16 Oct 2019 07:45:10 -0700
oracle update operation one or two
os: centos 7.6
db: oracle 19.3
Preparation data
Create table
-- drop table tmp_t0;
create table tmp_t0
(
id VARCHAR2(100),
name VARCHAR2(100),
memo VARCHAR2(100)
)
;
-- drop table tmp_t1;
create table tmp_t1
(
id VARCHAR2(100),
name VARCHAR2(100)
)
;
insert data
insert into tmp_t0 val ...
Posted by nikosft on Sun, 13 Oct 2019 12:21:03 -0700
[JavaWeb] JSTL tag library
JSTL tag library
JSTL Standard Label Library;
JSTL is used to simplify JSP development and improve code readability and maintainability.
JSTL is defined by SUN(Oracle) and implemented by Apache Tomcat team.
Reference to JSTL Core Library
Core is the most important tag library of JSTL, which provides the basic functions of JSTL.
<%@ taglib ...
Posted by farel on Sat, 12 Oct 2019 12:10:36 -0700
ODI Consistency CDC (Last Update Date) Synchronized Data Operation Details
ODI operation details
Consistent CDC (Last Update Date) Synchronized Data
Add CDC
1. Check the database version
DECLARE -- Validating KM options
dbVersion1 NUMBER(2,0);
dbVersion2 NUMBER(2,0);
BEGIN
-- Verify RDBMS version
select
case when upper(name) = 'COMPATIBLE' then to_number(substr(value, 1, instr(value, ...
Posted by sudhakararaog on Fri, 11 Oct 2019 19:05:52 -0700
Oracle 32k Field Extension Usage Test
Oracle 32k Field Extension Usage Test
More than 12C can be extended with 32k
Here's a set of tests to create a table in the 18c environment, using the 32k field varchar2
SQL> create table tab32k (name varchar2(32768));
create table tab32k (name varchar2(32768))
*
...
Posted by chrislive on Wed, 09 Oct 2019 21:13:10 -0700
There are four methods to find quality in java.
The first is that the double for cycle makes the calculation of divisors and dividends extremely inefficient.
public void test1(int n){
long start = System.currentTimeMillis(); //Take the start time
int num=0;
boolean sign;
for(int i=2;i<n;i++){
if(i % 2 == 0 && i != 2 ) conti ...
Posted by naveenbj on Mon, 07 Oct 2019 16:23:07 -0700
Invokedynamic-Java's Secret Weapon
The earliest work on invokedynamic s dates back at least to 2007, and the first successful dynamic call was made on 26 August 2008. This was earlier than the acquisition of Sun by Oracle and has been developed for a long time according to the standards of most developers.
The advantage of invokedynamic is that it is the first new bytecode since ...
Posted by Koobazaur on Mon, 07 Oct 2019 12:42:45 -0700
Chapter 72 Foundations of jquery
Catalog
Introduction of jQuery
1.jq API
2.jq initial knowledge
2. jq selector
III. jq Events
4. jq content operation
5. jq style operation
Introduction of jQuery
Guide reading
JQuery
jq is the js tool library, a collection of functions
The internal syntax of jq ...
Posted by DapperDanMan on Mon, 07 Oct 2019 06:47:47 -0700
Oracle 12C Graphics & Quietly Installing Trample
1 Installation Planning
ORACLE is installed on the new disk. The disk is mounted on u01. d01 and d02 are symbolic connections. The actual directory is under u01.
parameter
value
Oracle base
/d01/app/oracle
Software location
/d01/app/oracle/product/12102/dbhome_1
DATAFILEDESTINATION
/d02/oradata
RECOVERYAREADESTINATION
/d02/fast_recov ...
Posted by clairian on Fri, 04 Oct 2019 17:38:11 -0700
The Solution of Pirate Sharing Problem by SQL (Greedy Algorithms)
problem
Economically, there is a "pirate dividend" model: five pirates snatched 100 gold coins, and they put forward the plan in the order of drawing lots: first, the allocation plan was put forward by No. 1, then five people voted, more than half agreed that the plan was passed, otherwise he would be thrown into the sea to feed shark ...
Posted by sujithnair on Fri, 04 Oct 2019 12:37:12 -0700