代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/227599/14420203
h sql.h
#ifndef __SQLFNCT
#define __SQLFNCT
int sqlConnect(char* hostname, char* username, char* password, char* table ,int port, MYSQL* rMysql)
{
mysql_init(rMysql);
mysql_options(rMysql,MYSQL
www.eeworm.com/read/227595/14420435
sql tables.sql
create table sites(
site_id int auto_increment not null primary key,
url varchar(255),
title varchar(255),
short_desc text,
indexdate date,
spider_depth int default 2,
required text,
d
www.eeworm.com/read/126447/14423226
chm sql教程.chm
www.eeworm.com/read/227241/14436254
in sql.jsf.in
# JOE syntax highlight file for SQL
# See c.jsf for more documentation
# Define no. sync lines
# You can say:
# -200 means 200 lines
# - means always start parsing from beginning of file
www.eeworm.com/read/227241/14436314
jsf sql.jsf
# JOE syntax highlight file for SQL
# See c.jsf for more documentation
# Define no. sync lines
# You can say:
# -200 means 200 lines
# - means always start parsing from beginning of file
www.eeworm.com/read/126226/14437465
sql manage.sql
CREATE TABLE Student
(
student VARCHAR2(50),
pass VARCHAR2(50)
);
CREATE TABLE Test
(
student VARCHAR2(50),
test VARCHAR2(50),
score NUMBER,
info VARCHAR2(255)
);
CREATE TA
www.eeworm.com/read/126226/14437469
sql rumulus.sql
CREATE TABLE SCOTT.Test
(
s_ident NUMBER NOT NULL,
ident VARCHAR2(32) UNIQUE NOT NULL,
timing NUMBER DEFAULT 0 NOT NULL,
title VARCHAR2(255),
CONSTRAINT PK_Test PRIMARY KEY (s_ident )
);
www.eeworm.com/read/126199/14438245
sql material.sql
www.eeworm.com/read/226951/14445963
sql users.sql
--建立部门数据表
CREATE TABLE DEPARTMENT
(DEPTNO CHAR(3) PRIMARY KEY,
DEPTNAME VARCHAR(16) NOT NULL,
ADDR VARCHAR(20));
--建立用户数据表
CREATE TABLE USE
www.eeworm.com/read/226879/14449459