代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/122614/14679318
java sendfile.java
/*
* @(#)sendfile.java 1.7 00/01/30
*
* Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the proprietary information of Sun Microsystems, Inc.
* Use is sub
www.eeworm.com/read/122603/14679898
h rebind.h
struct DHCP_MESSAGE * create_rebind_message (struct DHCP_MESSAGE *, char *);
www.eeworm.com/read/122603/14679921
h decline.h
struct DHCP_MESSAGE * create_decline_message (struct DHCP_MESSAGE *, char *);
www.eeworm.com/read/122603/14679922
h renew.h
struct DHCP_MESSAGE * create_renew_message (struct DHCP_MESSAGE *, char *);
www.eeworm.com/read/122603/14679926
h release.h
struct DHCP_MESSAGE * create_release_message (struct DHCP_MESSAGE *, char *);
www.eeworm.com/read/222650/14681136
java simpletoolframe.java
/**
* Copyright 2000 MapInfo Corporation
* You are free to use this code in your applications, but you may not
* redistribute the source code without this notice.
*/
import javax.swing.*;
im
www.eeworm.com/read/222622/14682587
sql ddl.sql
CREATE TABLE Dealing (
DealingID int identity(1,1) Primary key ,
DealingDate datetime NOT NULL ,
DealingPrice money NOT NULL ,
UserName varchar(25) NULL ,
MemberCard varchar(20) NULL
)
www.eeworm.com/read/222434/14690817
sql 数据库课程设计操作代码.sql
--创建数据库
create database 教务管理系统
on
(
name=教务管理系统_data,
filename='F:\sql作业\教务管理系统_data.mdf',
size=20MB,
maxsize=200MB,
filegrowth=5MB
)
log on
(
name=XSGL_log,
filename='F:\sql作业\XSGL_log.l
www.eeworm.com/read/222305/14696989
sql sqlplus.sql
DROP TABLE Classinfo;
CREATE TABLE Classinfo(
cID char(6) primary key not null,
cClass char(10)
);
DROP TABLE Course;
CREATE TABLE Course(
cID char(6) prinmary key not null,
cName ch
www.eeworm.com/read/222133/14703337
sql sales-db-for-sql-server.sql
USE Master
GO
/****** CREATE SALES DATABASE ******/
if exists (select * from dbo.sysdatabases where name='Sales')
drop database Sales
GO
CREATE DATABASE Sales
GO
USE Sales
GO
/*