代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/187332/5224109
sql admin.sql
-- SQL script for PDT module
USE pdt;
-- create table
CREATE TABLE admin(
name VARCHAR(20) NOT NULL PRIMARY KEY,
passwd VARCHAR(20) NOT NULL DEFAULT ""
);
CREATE TABLE authentication (
username
www.eeworm.com/read/187332/5224139
sql xjab.sql
#
# DATABASE definition
#
DROP DATABASE IF EXISTS sip_jab;
CREATE DATABASE sip_jab;
USE sip_jab;
# jabber users
CREATE TABLE jusers(
juid INT NOT NULL AUTO_INCREMENT,
jab_id VARCHAR(128) NOT NUL
www.eeworm.com/read/187332/5224167
sql speeddial.sql
CREATE TABLE speed_dial (
username varchar(64) NOT NULL default '',
domain varchar(128) NOT NULL default '',
sd_username varchar(64) NOT NULL default '',
sd_domain varchar(128) NOT NULL defaul
www.eeworm.com/read/187332/5224360
sql msilo.sql
-- SQL script for MSILO module
DROP DATABASE IF EXISTS msilo;
-- create a database for storage
CREATE DATABASE msilo;
USE msilo;
-- create the table
CREATE TABLE silo(
-- unique ID per mess
www.eeworm.com/read/187332/5224409
sql pa.sql
-- Copyright (c) 2003, Hewlett-Packard Company
-- All rights reserved.
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the followin
www.eeworm.com/read/186489/5231361
sql blob.sql
drop table test_blob;
create table test_blob (
data BLOB);
create or replace procedure storeBlob (foo IN RAW)
AS
tmp BLOB;
sz binary_integer;
BEGIN
insert INTO test_blob VALUES (EMPTY_BLOB ())
www.eeworm.com/read/186489/5231363
sql building.sql
drop TABLE t_building;
drop TABLE t_movie;
drop SEQUENCE building_seq;
drop SEQUENCE movie_seq;
drop TYPE O_BUILDING;
drop TYPE MV_ARRAY;
create or replace package curs
AS
TYPE REFCURSOR IS REF C
www.eeworm.com/read/186489/5231364
sql person.sql
-- to test oracle bindings
drop TABLE t_person;
drop SEQUENCE person_seq;
drop TYPE O_PERSON;
/*
create or replace TYPE O_MOVIE AS OBJECT (
name varchar2(40));
/*/
/
create or replace TYPE O
www.eeworm.com/read/186489/5231459
sql test.sql
create table db_poet(
a_oid numeric identity,
primary key (a_oid),
a_war_vet char(1),
a_war_hero char(1),
po_poem varchar(128) null,
a_sal numeric(38,3) null constraint auth_sal_ge_zero check (
www.eeworm.com/read/186404/5232075
sql createoidadmindata.sql
/* Create the oid table for data loaded by the Loader*/
create table OBJECTID
(
next DECIMAL(19,0) NOT NULL
);
insert into OBJECTID (next) values (1);