代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/318039/3572041
attrmap sql.attrmap
#
# A mapping between the attributes used by dialup_admin and the attribute
# names that will be stored in the SQL database
#
# Attributes that are not contained in this file are assumed to be reply
#
www.eeworm.com/read/318039/3572047
sql badusers.sql
#
# Table structure for table 'badusers'
#
CREATE TABLE badusers (
id int(10) NOT NULL auto_increment,
UserName varchar(30),
IncidentDate datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
Reaso
www.eeworm.com/read/318039/3572048
sql userinfo.sql
#
# Table structure for table 'userinfo'
#
CREATE TABLE userinfo (
id int(10) DEFAULT '0' NOT NULL auto_increment,
UserName varchar(30),
Name varchar(200),
Mail varchar(200),
Department varc
www.eeworm.com/read/318039/3572049
sql mtotacct.sql
CREATE TABLE mtotacct (
MTotAcctId bigint(21) NOT NULL auto_increment,
UserName varchar(64) NOT NULL default '',
AcctDate date NOT NULL default '0000-00-00',
ConnNum bigint(12) default NULL,
www.eeworm.com/read/318039/3572050
sql totacct.sql
CREATE TABLE totacct (
TotAcctId bigint(21) NOT NULL auto_increment,
UserName varchar(64) NOT NULL default '',
AcctDate date NOT NULL default '0000-00-00',
ConnNum bigint(12) default NULL,
C
www.eeworm.com/read/318039/3572051
sql badusers.sql
SET search_path = public, pg_catalog;
--Table structure for table 'badusers'
--
CREATE TABLE badusers (
id BIGSERIAL PRIMARY KEY,
username TEXT NOT NULL,
incidentdate timestamp with time
www.eeworm.com/read/318039/3572052
sql userinfo.sql
SET search_path = public, pg_catalog;
--
-- Table structure for table 'userinfo'
--
CREATE TABLE userinfo (
id SERIAL PRIMARY KEY,
username TEXT,
name TEXT,
mail TEXT,
department
www.eeworm.com/read/318039/3572053
sql mtotacct.sql
SET search_path = public, pg_catalog;
--
-- Table structure for table 'mtotacct'
--
CREATE TABLE mtotacct (
mtotacctid BIGSERIAL PRIMARY KEY,
username TEXT DEFAULT '' NOT NULL,
acctdate D
www.eeworm.com/read/318039/3572054
sql totacct.sql
SET search_path = public, pg_catalog;
--
-- Table structure for table 'totacct'
--
CREATE TABLE totacct (
totacctid bigSERIAL PRIMARY KEY,
username TEXT DEFAULT '' NOT NULL,
acctdate DATE
www.eeworm.com/read/318039/3572055
sql badusers.sql
/*
* $Id: badusers.sql,v 1.4 2005/03/21 17:05:18 kkalev Exp $
*
*/
/*
* Table structure for table 'radcheck'
*/
CREATE TABLE badusers (
id INT PRIMARY KEY,
username VARCHAR(30) DEFAULT '' NO