代码搜索:create
找到约 10,000 项符合「create」的源代码
代码结果 10,000
www.eeworm.com/read/305015/13779893
h create.h
//
// Create.h
//
IUnknown* CallCreateInstance(char* name) ;
www.eeworm.com/read/238607/13872084
c create.c
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use thi
www.eeworm.com/read/148359/5715983
pas create.pas
PROGRAM CreateProfile;
USES lcmsdll, Windows;
VAR
Primaries: cmsCIExyYTRIPLE;
WhitePoint: cmsCIExyY;
GammaTables: ARRAY [1..3] OF LPGAMMATABLE;
TheProfile:
www.eeworm.com/read/144216/5752167
t create.t
use Thread 'async';
use Config;
use Tie::Hash;
sub start_here {
my $i;
print "In start_here with args: @_\n";
for ($i = 1; $i
www.eeworm.com/read/141805/5768236
sql create.sql
drop table checking;
create table checking
(id varchar(3) constraint pk_checking primary key,
balance decimal(10,2));
insert into checking
values ('123', 500.00);
drop table cash_in_machine;
www.eeworm.com/read/141805/5768245
sql create.sql
drop table savingsaccount;
create table savingsaccount
(id varchar(3) constraint pk_savings_account primary key,
firstname varchar(24),
lastname varchar(24),
balance numeric(10,2));
exit;
www.eeworm.com/read/141805/5768251
sql create.sql
drop table lineitems;
drop table orders;
create table orders
(orderid varchar(3) constraint pk_order primary key,
customerid varchar(3),
totalprice decimal(10,2),
status varchar(10));
insert into
www.eeworm.com/read/141805/5768257
sql create.sql
drop table checking;
create table checking
(id varchar(3) constraint pk_checking primary key,
balance decimal(10,2));
insert into checking
values ('123', 100.00);
drop table saving;
create t
www.eeworm.com/read/141805/5768263
sql create.sql
drop table inventory;
create table inventory
(product_id varchar(3),
quantity decimal(10));
insert into inventory
values ('123', 100);
drop table order_item;
create table order_item
(order
www.eeworm.com/read/141805/5768274
sql create.sql
drop table LINEITEM;
drop table ORDERS;
drop table VENDOR_PART;
drop table VENDOR;
drop table PART_DETAIL;
drop table PART;
commit;
/* Self-ref to identify Bill of Material (BOM)
* Compound PK
*/