代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/173141/5379002
properties errorstream_app.properties
#
# only copied this from default_app.properties to specify no run with j9
# for this test runs with DataSource & database_enabler - with j9_13 & j9_22 - does not have a DataSource
#
runwithj9=fal
www.eeworm.com/read/173141/5379197
properties users_app.properties
# not using ij.user here as those properties are used
# for every connection request in ij, but for this test
# the user name is only required for the initial connection.
ij.protocol=jdbc:derby:
ij.da
www.eeworm.com/read/173141/5379243
properties secureusers_app.properties
# not using ij.user here as those properties are used
# for every connection request in ij, but for this test
# the user name is only required for the initial connection.
ij.protocol=jdbc:derby:
ij.da
www.eeworm.com/read/173141/5379252
properties users2_app.properties
# not using ij.user here as those properties are used
# for every connection request in ij, but for this test
# the user name is only required for the initial connection.
ij.protocol=jdbc:derby:
ij.da
www.eeworm.com/read/173141/5379285
properties secureusers1_app.properties
# not using ij.user here as those properties are used
# for every connection request in ij, but for this test
# the user name is only required for the initial connection.
ij.protocol=jdbc:derby:
ij.da
www.eeworm.com/read/173141/5379370
sql createz.sql
autocommit off;
create table z (x int);
insert into z values (1);
insert into z values (1);
insert into z values (1);
insert into z values (1);
insert into z values (1);
drop table z;
commit;
disconne
www.eeworm.com/read/173141/5379375
sql createa.sql
autocommit off;
create table a (x int);
insert into a values (1);
insert into a values (1);
insert into a values (1);
insert into a values (1);
insert into a values (1);
drop table a;
commit;
disconne
www.eeworm.com/read/173141/5379379
sql createy.sql
autocommit off;
create table y (x int);
insert into y values (1);
insert into y values (1);
insert into y values (1);
insert into y values (1);
insert into y values (1);
drop table y;
commit;
disconne
www.eeworm.com/read/173141/5379482
out refactions3.out
ij> -- webSphere Portal Server Development test cases
CREATE TABLE ID_TABLE (
TABLE_NAME VARCHAR(128) NOT NULL,
LAST_ID INTEGER NOT NULL,
CONSTRAINT PK10 PRIMARY KEY (TABLE_NAME)
);
0 row
www.eeworm.com/read/173141/5379708
out unlimited.out
ij> -- This tests whether we are prevented from creating more than 15 tables
-- in the standard (unlimited) version of the product.
--
create table t1 (x int);
0 rows inserted/updated/deleted
ij> crea