File: last_insert_id_func.result

package info (click to toggle)
mariadb-10.1 10.1.45-0%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 476,916 kB
  • sloc: cpp: 1,124,656; ansic: 871,843; perl: 52,917; sh: 40,078; pascal: 35,370; javascript: 15,555; yacc: 14,728; ruby: 8,684; xml: 5,377; sql: 3,490; makefile: 2,934; python: 1,970; java: 1,691; asm: 837; lex: 757; php: 22; sed: 16
file content (93 lines) | stat: -rw-r--r-- 2,579 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
drop table if exists t1;
## Creating new table ##
CREATE TABLE t1
(
id INT NOT NULL auto_increment,
PRIMARY KEY (id),
name VARCHAR(30)
) ENGINE = INNODB;
'#--------------------FN_DYNVARS_059_01-------------------------#'
## Verifying initial value of ## 
SELECT @@session.last_insert_id;
@@session.last_insert_id
0
## Inserting records in table t1 ##
INSERT into t1(name) values('Record_1');
INSERT into t1(name) values('Record_2');
SELECT * from t1;
id	name
1	Record_1
2	Record_2
## Verifying value of variable after inserting some rows ## 
SELECT @@session.last_insert_id = 2;
@@session.last_insert_id = 2
1
'#--------------------FN_DYNVARS_059_02-------------------------#'
## Creating & connecting to new connection test_con1 ##
SET @@autocommit = 0;
## Verifying initial value of variable in new connection ## 
SELECT @@session.last_insert_id;
@@session.last_insert_id
0
## Inserting rows in table t1 ## 
START TRANSACTION;
INSERT into t1(name) values('Record_3');
INSERT into t1(name) values('Record_4');
INSERT into t1(name) values('Record_5');
## Verifying value of variable without committing rows ## 
SELECT @@session.last_insert_id;
@@session.last_insert_id
5
'#--------------------FN_DYNVARS_059_03-------------------------#'
## Creating & connecting to new connection test_con2 ##
## Inserting values through new connection ##
INSERT into t1(name) values('Record_6');
INSERT into t1(name) values('Record_7');
SELECT * from t1;
id	name
1	Record_1
2	Record_2
6	Record_6
7	Record_7
## Verifying value of variable in second connection ## 
SELECT @@last_insert_id;
@@last_insert_id
7
'#--------------------FN_DYNVARS_059_04-------------------------#'
## Switching to test_con1 ##
## Verifying all records in table & value of variable ##
SELECT * from t1;
id	name
1	Record_1
2	Record_2
3	Record_3
4	Record_4
5	Record_5
6	Record_6
7	Record_7
SELECT @@session.last_insert_id;
@@session.last_insert_id
5
## Commiting records in table ##
COMMIT;
SELECT @@session.last_insert_id;
@@session.last_insert_id
5
## Switching to test_con2 & verifying value of variable in it ## 
SELECT @@session.last_insert_id;
@@session.last_insert_id
7
'#--------------------FN_DYNVARS_059_05-------------------------#'
## Setting value of variable ## 
SET @@session.last_insert_id = 100;
SELECT @@session.last_insert_id;
@@session.last_insert_id
100
## Inserting new record and verifying variable's effect on it ##
INSERT into t1(name) values('Record_8');
SELECT @@session.last_insert_id;
@@session.last_insert_id
8
## Dropping table t1 ##
drop table t1;
## Disconnecting both the connections ##