代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/193277/8242020
m contents.m
% YALMIP
% Version 3 (R14SP3) 08-Dec-2006
%
% Information
%
% Variables.
% sdpvar - Create SDPVAR variable
% intvar - Create integer SDPVAR variable
% binvar - Create
www.eeworm.com/read/294151/8250108
m makeldpc.m
function H = makeLdpc(M, N, method, noCycle, onePerCol)
% Create R = 1/2 low density parity check matrix
%
% M : Number of row
% N : Number of column
% method : Method for dist
www.eeworm.com/read/192983/8259961
sql demo036.sql
CREATE TABLE DemoDb.Alex.Customer (name nvarchar(12))
USE DemoDb
CREATE TABLE Alex.Customer (name nvarchar(12))
USE DemoDb
CREATE TABLE Customer (name nvarchar(12))
www.eeworm.com/read/192983/8260321
sql sample69.sql
/* 文件名称: Sample69.sql */
USE 北风贸易
-- 先检查名称为 MyDemoTable 的用户数据表是否存在
IF EXISTS (SELECT * FROM sysobjects
WHERE type = 'U' AND name = 'MyDemoTable')
DROP TABLE MyDemoTable
G
www.eeworm.com/read/192983/8260385
sql demo035.sql
/* 文件名称: Demo035.sql */
USE NorthwindSQL
GO
CREATE TABLE 我的数据表
(
产品名称 nvarchar(20) NOT NULL,
虫基 money NOT NULL,
数量 int NOT NULL,
折扣 decimal(3,2) NOT NULL
)
GO
INSERT 我的数据表 VALUES ('酱油',
www.eeworm.com/read/192891/8267784
sql lib .sql
/*1.3.1 创建系统用户表格user_Info*/
CREATE TABLE user_Info1
(
user_ID VARCHAR (10) NOT NULL ,
user_PWD VARCHAR (10) NOT NULL ,
user_Des VARCHAR (20),
CONSTRAINT user_ID_PK1 PRIMARY KEY (User_ID)
www.eeworm.com/read/293643/8281113
pas acmin.pas
unit ACMIn;
{-----------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may
www.eeworm.com/read/393485/8282417
cpp ex145_odbc.cpp
#include
using namespace std;
#include
#if !defined(_WINDOWS_) && !defined(_WIN64)
#define OTL_ODBC
#else
#define OTL_ODBC_POSTGRESQL // required with PG ODBC on Windows
www.eeworm.com/read/393485/8283538
cpp ex138_odbc.cpp
#include
using namespace std;
#include
#define OTL_ODBC // Compile OTL 4.0 / ODBC Firebird
// #define OTL_ODBC_UNIX // uncomment this line if UnixODBC is used
#include
www.eeworm.com/read/293481/8291718
java modelswarm.java
// ModelSwarm.java
// The top-level ModelSwarm
import swarm.Globals;
import swarm.Selector;
import swarm.defobj.Zone;
import swarm.objectbase.Swarm;
import swarm.objectbase.SwarmImpl;
imp