File: siddb

package info (click to toggle)
sqlrelay 1%3A0.37.1-3.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 13,084 kB
  • ctags: 6,691
  • sloc: cpp: 48,136; python: 10,118; ansic: 9,673; java: 9,195; php: 8,839; perl: 8,827; sh: 8,554; ruby: 8,516; tcl: 5,039; makefile: 3,665
file content (100 lines) | stat: -rw-r--r-- 2,797 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
-- MySQL dump 10.9
--
-- Host: localhost    Database: siddb
-- ------------------------------------------------------
-- Server version	4.1.8-standard

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE="NO_AUTO_VALUE_ON_ZERO" */;

--
-- Table structure for table `sidegressblist`
--

DROP TABLE IF EXISTS `sidegressblist`;
CREATE TABLE `sidegressblist` (
  `sql_state` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Table structure for table `sidegressldb`
--

DROP TABLE IF EXISTS `sidegressldb`;
CREATE TABLE `sidegressldb` (
  `parsed_sql` text NOT NULL,
  KEY `new_index` (`parsed_sql`(400))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Table structure for table `sidegresswlist`
--

DROP TABLE IF EXISTS `sidegresswlist`;
CREATE TABLE `sidegresswlist` (
  `sql_state` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Table structure for table `sidingressblist`
--

DROP TABLE IF EXISTS `sidingressblist`;
CREATE TABLE `sidingressblist` (
  `sql_state` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Table structure for table `sidingressldb`
--

DROP TABLE IF EXISTS `sidingressldb`;
CREATE TABLE `sidingressldb` (
  `parsed_sql` text NOT NULL,
  KEY `new_index` (`parsed_sql`(400))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Table structure for table `sidingresswlist`
--

DROP TABLE IF EXISTS `sidingresswlist`;
CREATE TABLE `sidingresswlist` (
  `sql_state` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Table structure for table `sidlog`
--

DROP TABLE IF EXISTS `sidlog`;
CREATE TABLE `sidlog` (
  `sql_state` text NOT NULL,
  `parsed_sql` text NOT NULL,
  `sid_flag` varchar(100) NOT NULL default '',
  `sid_log_date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Table structure for table `sidparameters`
--

DROP TABLE IF EXISTS `sidparameters`;
CREATE TABLE `sidparameters` (
  `sparam` char(30) NOT NULL default '',
  `svalue` int(11) NOT NULL default '0',
  PRIMARY KEY  (`sparam`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;