代码搜索:sql

找到约 10,000 项符合「sql」的源代码

代码结果 10,000
www.eeworm.com/read/340102/3291838

sql insert.sql

--初始化cityinfo表 insert into cityinfo(cityid,cityname) values('100001','北京'); insert into cityinfo(cityid,cityname) values('100002','天津'); insert into cityinfo(cityid,cityname) values('100003','太原');
www.eeworm.com/read/339800/3294440

h sql.h

#ifndef _SQL_H #define _SQL_H #ifdef __cplusplus extern "C" { #endif #ifndef ODBCVER #define ODBCVER 0x0250 #endif #include "sqltypes.h" /* FIXME! */ #define SQL_SPEC_MAJOR (ODBCVER/0x100) #define SQL
www.eeworm.com/read/339781/3295752

sql createdb.sql

-- MySQL Administrator dump 1.4 -- -- ------------------------------------------------------ -- Server version 5.0.26-community-nt /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /
www.eeworm.com/read/339586/3297437

sql resources.sql

drop table if exists Resources; create table Resources ( id int unsigned not null auto_increment, userid int unsigned not null, aor varchar(255) not null, forwardType ch
www.eeworm.com/read/339586/3297438

sql parameters.sql

drop table if exists Parameters; create table Parameters ( parameter varchar(20) not null, value varchar(255) not null); insert into Parameters(parameter,value) values('salt','Pilot#$
www.eeworm.com/read/339586/3297440

sql users.sql

drop table if exists Users; create table Users ( id int unsigned not null auto_increment, username varchar(255) not null, password varchar(32) not null, fullname varchar
www.eeworm.com/read/339446/3301598

pro sql.pro

TEMPLATE = subdirs SUBDIRS = cachedtable \ drilldown \ masterdetail \ querymodel \ tablemodel \ relationaltab
www.eeworm.com/read/339446/3307045

pri sql.pri

# Qt compat module HEADERS += sql/q3sqlfieldinfo.h \ sql/q3sqlrecordinfo.h \ sql/q3datatable.h \ sql/q3dataview.h \ sql/q3sqlcurso
www.eeworm.com/read/339446/3308604

pro sql.pro

TARGET = QtSql QPRO_PWD = $$PWD QT = core DEFINES += QT_BUILD_SQL_LIB win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x62000000 include(../qbase.pri) DEFINES += QT_NO_CAST_FROM_ASCII PRECO
www.eeworm.com/read/339200/3310515

sql caiwu.sql

# Dump for Database caiwu CREATE DATABASE caiwu; # Dumping Table class # CREATE TABLE class ( id int(4) NOT NULL auto_increment, name varchar(20) NOT NULL , PRIMARY KEY (id)