代码搜索:Key
找到约 10,000 项符合「Key」的源代码
代码结果 10,000
www.eeworm.com/read/323119/13351966
result foreign_key.result
drop table if exists t1;
create table t1 (
a int not null references t2,
b int not null references t2 (c),
primary key (a,b),
foreign key (a) references t3 match full,
foreign key (a) references t3 ma
www.eeworm.com/read/323119/13352167
result key_diff.result
www.eeworm.com/read/323119/13352691
des_key_file
5 default_password
1 password1
4 password4
2 password2
www.eeworm.com/read/323119/13352694
pem server-key.pem
-----BEGIN RSA PRIVATE KEY-----
MIICXgIBAAKBgQDphnpVhIhMvqT4knMwEkkLeoWHOTQ5DX0LjRjCF5UTUtI/VRBX
yD9a9bL6i9BnScyqgvyfzgC0c/M20jrTwrAOFMPUsiF0ofAxgWCHmHNcEMGxGk3x
87CYP/DXl5sr/dUhebIv62QVyZud/J4t1PgEW+
www.eeworm.com/read/323119/13352705
pem client-key.pem
-----BEGIN RSA PRIVATE KEY-----
MIICXQIBAAKBgQDEAwru47ES/O60GfThYB3gKMOWLd+Cac10fFRY0K6zWT8MGRyZ
EKYSyc86ZAVDjr/SZTaAkQtlsCcmOMkj2DaiSvD3wC9oOHABJyn/ssVS4WvxyNfD
XO7wN2wqm5YaBZ7rM6I5WndmYid1Hy9vONrln3
www.eeworm.com/read/323119/13353578
test key_cache.test
#
# Test of multiple key caches
#
--disable_warnings
drop table if exists t1, t2, t3;
--enable_warnings
SET @save_key_buffer=@@key_buffer_size;
SELECT @@key_buffer_size, @@small.key_buffer_size;
#
www.eeworm.com/read/323119/13353739
test key_primary.test
#
# test of primary key conversions
#
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1 (t1 char(3) primary key);
insert into t1 values("ABC");
insert into t1 values("ABA
www.eeworm.com/read/323119/13353920
test foreign_key.test
#
# Test syntax of foreign keys
#
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1 (
a int not null references t2,
b int not null references t2 (c),
primary key (a,b)
www.eeworm.com/read/323119/13354193
test key_diff.test
#
# Check on condition on different length keys.
--disable_warnings
drop table if exists t1;
--enable_warnings
CREATE TABLE t1 (
a char(5) NOT NULL,
b char(4) NOT NULL,
KEY (a),
KEY (b)
);
www.eeworm.com/read/323119/13354208
test null_key.test
#
# Check null keys
--disable_warnings
drop table if exists t1,t2;
--enable_warnings
create table t1 (a int, b int not null,unique key (a,b),index(b)) engine=myisam;
insert ignore into t1 values (1,