代码搜索:create
找到约 10,000 项符合「create」的源代码
代码结果 10,000
www.eeworm.com/read/194357/5132196
pl create.pl
#!/usr/bin/perl
use File::Find;
use HTML::Stream;
use IO::File;
use Pod::Tree::HTML;
use Pod::Tree::PerlUtil;
use Pod::Tree::PerlPod;
use Pod::Tree::PerlDist;
use Pod::Tree::PerlMap;
my $pod_dir='./
www.eeworm.com/read/189857/5191423
sql create.sql
CREATE TABLE ADDRESS (
ADDRESSID VARCHAR(256) NOT NULL,
STREET VARCHAR(256) ,
STATE VARCHAR(256) ,
ZIP VARCHAR(256) ,
CITY VARCHAR(256) ,
CONSTRAINT PK_ADDRESS PRIMARY KEY (ADDRESSID)
)
;
CREATE TABLE
www.eeworm.com/read/189857/5191471
sql create.sql
CREATE TABLE customer (
customerid VARCHAR(8) NOT NULL,
lastname VARCHAR(24) NOT NULL,
firstname VARCHAR(24) NOT NULL,
primary key (customerid)
);
INSERT INTO customer VALUES('SUN00001', 'LastNam
www.eeworm.com/read/188906/5205280
sql create.sql
drop table if exists works;
create table works (
id int unsigned not null auto_increment,
nickname char(20) not null,
sex enum('帅哥','靓妹') not null default '帅哥',
city char(20) null default
www.eeworm.com/read/183001/5260187
source create.source
create table onek(unique1 int4,unique2 int4,two int4,four int4,ten int4,twenty int4, hundred int4,thousand int4,twothousand int4,fivethous int4,tenthous int4,odd int4, even int4,stringu1 name,stringu2
www.eeworm.com/read/183001/5260195
sh create.sh
#!/bin/sh
# $PostgreSQL: pgsql/src/test/bench/create.sh,v 1.5 2005/06/21 04:02:34 tgl Exp $
#
if [ ! -d $1 ]; then
echo " you must specify a valid data directory " >&2
exit
fi
if [ -d ./obj ]; then
www.eeworm.com/read/179153/5309652
t create.t
#!/usr/bin/perl -w
#!perl -w
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir 't';
@INC = ('../lib', 'lib');
}
else {
unshift @INC, 't/lib';
}
}
use Test::More tests =>
www.eeworm.com/read/177235/5331455
create-toc
#!/usr/bin/perl
#
# This program generates an HTML document containing links to man
# pages already converted to html using man2html3.0.1
# (http://search.cpan.org/~ehood/man2html3.0.1/)
#
# Written
www.eeworm.com/read/173141/5379377
sql create.sql
autocommit off;
create table x (x int);
insert into x values (1);
insert into x values (1);
insert into x values (1);
insert into x values (1);
insert into x values (1);
drop table x;
commit;
disconne