代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/174336/9595107
cc aspect.cc
/* C++ Reflection & Serice Library
* Copyright (C) 2003 Marcus Perlick
* mailto: riffraff@users.sf.net
*
* This library is free software; you can redistribute it and/or
* modify it under the te
www.eeworm.com/read/174072/9608669
cpp ex145_odbc.cpp
#include
using namespace std;
#include
#define OTL_ODBC_POSTGRESQL
// #define OTL_ODBC_UNIX // uncomment this line if UnixODBC is used
#include // include the OTL
www.eeworm.com/read/174072/9609379
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/174072/9609594
cpp ex297_odbc.cpp
#include
using namespace std;
#include
#define OTL_ODBC // Compile OTL 4.0/ODBC
// To suppress the "function not implemented" error message,
// the following #define n
www.eeworm.com/read/173823/9634276
java sendattachment.java
import java.util.Properties;
import javax.activation.*;
import javax.mail.*;
import javax.mail.internet.*;
import java.io.File;
// Chapter 13, Listing 5
public class SendAttachment
{
publi
www.eeworm.com/read/369671/9637275
sql db_student.sql
--create database
use master;
if exists (select * from sysdatabases where name='student') drop database student;
create database student;
use student;
--create table s
create table s
(
sn
www.eeworm.com/read/369671/9637278
sql db_spj.sql
--create database
use master;
if exists (select * from sysdatabases where name='spj') drop database spj;
create database spj;
use spj;
--create table s
create table s
(
sno char(2),
s
www.eeworm.com/read/173585/9649345
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/369165/9660719
java~1~ saveipinfo.java~1~
package tsinghuaip;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.ResultSetMeta
www.eeworm.com/read/369165/9660821
java~2~ saveipinfo.java~2~
package tsinghuaip;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.ResultSetMeta