403Webshell
Server IP : 88.99.149.37  /  Your IP : 216.73.216.141
Web Server : nginx/1.31.2
System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64
User : muralimurth ( 1015)
PHP Version : 8.4.23
Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/local/mysql/mysql-test/suite/sys_vars/r/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/local/mysql/mysql-test/suite/sys_vars/r/last_insert_id_func.result
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;

Youez - 2016 - github.com/yon3zu
LinuXploit