代码搜索:create
找到约 10,000 项符合「create」的源代码
代码结果 10,000
www.eeworm.com/read/325125/13226153
h create.h
#if !defined(AFX_CREATE_H__215CC7F9_E907_4829_AB33_AF3122260131__INCLUDED_)
#define AFX_CREATE_H__215CC7F9_E907_4829_AB33_AF3122260131__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_
www.eeworm.com/read/138258/13244361
c create.c
#include
#include
void main()
{
FILE *myfile;
myfile = fopen("alive.txt","w");
if(!myfile)
{
puts("Some kind of file error!");
exit(0)
www.eeworm.com/read/137233/13337596
cc create.cc
// create.cc
/* -------------------------------------------------------------------
gpc++ - The Genetic Programming Kernel
This program is free software; you can redistribute it and/or modify
it u
www.eeworm.com/read/323119/13351141
test-create
#!/usr/bin/perl
# Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library G
www.eeworm.com/read/323119/13352058
result create.result
drop table if exists t1,t2,t3,t4,t5;
drop database if exists mysqltest;
create table t1 (b char(0));
insert into t1 values (""),(null);
select * from t1;
b
NULL
drop table if exists t1;
create table
www.eeworm.com/read/323119/13353297
test create.test
#
# Check some special create statements.
#
--disable_warnings
drop table if exists t1,t2,t3,t4,t5;
drop database if exists mysqltest;
--enable_warnings
create table t1 (b char(0));
insert into t1 v
www.eeworm.com/read/136879/13356331
cpp create.cpp
// Fig. 6.9: create.cpp
// Member function definitions for class CreateAndDestroy
#include
#include "create.h"
CreateAndDestroy::CreateAndDestroy( int value )
{
data = value;
www.eeworm.com/read/136879/13356333
h create.h
// Fig. 6.9: create.h
// Definition of class CreateAndDestroy.
// Member functions defined in create.cpp.
#ifndef CREATE_H
#define CREATE_H
class CreateAndDestroy {
public:
CreateAndDestro
www.eeworm.com/read/322529/13377725
create_script
DROP DATABASE IF EXISTS mysql_auth;
USE mysql;
DELETE FROM user WHERE User LIKE 'squid';
DELETE FROM db WHERE User LIKE 'squid';
DELETE FROM tables_priv WHERE User LIKE 'squid';
CREATE DATABASE mysq
www.eeworm.com/read/320400/13427588