File: last_insert_id_func.result

package info (click to toggle)
mariadb 1%3A11.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 772,520 kB
  • sloc: ansic: 2,414,714; cpp: 1,791,394; asm: 381,336; perl: 62,905; sh: 49,647; pascal: 40,897; java: 39,363; python: 20,791; yacc: 20,432; sql: 17,907; xml: 12,344; ruby: 8,544; cs: 6,542; makefile: 6,145; ada: 1,879; lex: 1,193; javascript: 996; objc: 80; tcl: 73; awk: 46; php: 22
file content (97 lines) | stat: -rw-r--r-- 2,607 bytes parent folder | download | duplicates (6)
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
94
95
96
97
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-------------------------#'
connect  test_con1, localhost, root,,;
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-------------------------#'
connect  test_con2, localhost, root,,;
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-------------------------#'
connection 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 ## 
connection test_con2;
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;
disconnect test_con1;
disconnect test_con2;