File: mysqlcursortest_create.sql

package info (click to toggle)
kdb 3.2.0-9.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,284 kB
  • sloc: cpp: 38,360; yacc: 940; python: 779; sh: 711; ansic: 440; lex: 367; xml: 182; sql: 51; makefile: 10
file content (41 lines) | stat: -rw-r--r-- 785 bytes parent folder | download | duplicates (18)
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
-- MySQL dump 9.08
--
-- Host: localhost    Database: test
---------------------------------------------------------
-- Server version	4.0.14

--
-- Table structure for table 'Applications'
--

CREATE TABLE Applications (
  id int(11) NOT NULL default '0',
  value varchar(20) default NULL,
  PRIMARY KEY  (id)
) TYPE=MyISAM;

--
-- Dumping data for table 'Applications'
--

INSERT INTO Applications VALUES (0,'A');
INSERT INTO Applications VALUES (1,'B');
INSERT INTO Applications VALUES (2,'C');
INSERT INTO Applications VALUES (3,'D');
INSERT INTO Applications VALUES (4,'E');

--
-- Table structure for table 'jw1'
--

CREATE TABLE jw1 (
  id int(11) NOT NULL default '0',
  txt varchar(20) default NULL,
  PRIMARY KEY  (id)
) TYPE=MyISAM;

--
-- Dumping data for table 'jw1'
--