代码搜索:create
找到约 10,000 项符合「create」的源代码
代码结果 10,000
www.eeworm.com/read/105523/15665823
create_mssql
-- Copyright (C) 2000 Carnegie Mellon University
--
-- Author(s): Chris Reid
--
-- Based on the create_mysql file from:
-- Jed Pickel
www.eeworm.com/read/105523/15665832
create_postgresql
-- Copyright (C) 2000 Carnegie Mellon University
--
-- Author(s): Jed Pickel
-- Roman Danyliw ,
-- Todd Schrubb
www.eeworm.com/read/105523/15665839
create_mysql
# Copyright (C) 2000 Carnegie Mellon University
#
# Author(s): Jed Pickel
# Roman Danyliw ,
# Todd Schrubb
#
# T
www.eeworm.com/read/104056/15711080
no-create-missing
#!/bin/sh
# Ensure that touch -c no-such-file no longer fails (it did in 4.1.8).
if test "$VERBOSE" = yes; then
set -x
touch --version
fi
pwd=`pwd`
tmp=`echo "$0"|sed 's,.*/,,'`.tmp
trap 'status
www.eeworm.com/read/104056/15711089
create-leading
#! /bin/sh
# Test -D option.
# Note that the tests below use `ginstall', not install, because
# that's the name of the binary in ../../src.
if test "$VERBOSE" = yes; then
set -x
ginstall --versio
www.eeworm.com/read/101716/15821624
gif create.gif
www.eeworm.com/read/100800/15864234
c create.c
www.eeworm.com/read/100743/15865501
sql create.sql
create database ToyData
go
use ToyData
go
create table UserDetails
(
vUserName varchar(15) constraint pkUserId primary key,
vPassword varchar(20),
vName varchar(15) ,
cCredit varchar(
www.eeworm.com/read/100743/15865525
sql create.sql
create database ToyData
go
use ToyData
go
create table UserLogin
(
cUserName char(20) constraint pkUserName primary key,
vPassword varchar(20)
)
go
/*===================================