Importeren van tabel met records in MySQL
Quote:
DROP TABLE IF EXISTS `tblCategorie`;
CREATE TABLE `tblCategorie` (
`Film_ID` INTEGER DEFAULT 0,
`Genre_ID` INTEGER DEFAULT 0,
INDEX (`Film_ID`),
INDEX (`Genre_ID`)
) ENGINE=myisam DEFAULT CHARSET=utf8;
SET autocommit=1;
#
# Dumping data for table 'tblCategorie'
#
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (1, 10);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (2, 1);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (3, 16);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (4, 6);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (5, 11);
DROP TABLE IF EXISTS `tblCategorie`;
CREATE TABLE `tblCategorie` (
`Film_ID` INTEGER DEFAULT 0,
`Genre_ID` INTEGER DEFAULT 0,
INDEX (`Film_ID`),
INDEX (`Genre_ID`)
) ENGINE=myisam DEFAULT CHARSET=utf8;
SET autocommit=1;
#
# Dumping data for table 'tblCategorie'
#
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (1, 10);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (2, 1);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (3, 16);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (4, 6);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (5, 11);
Waarom krijg ik met de bovenstaande script geen records toegevoegd in een tabel?
Hetzelfde als met ca. 10 andere tabellen, allemaal aangemaakt in MySQL maar geen enkele records.
probeer anders eerst de tabel te maken en daarna toe te voegen
In phpmyadmin. Hier kan je een sql-script met de bovenstaande code importeren en maakt de tabellen aan en zou dus ook de records moeten toevoegen.
Als iets niet lukt krijg je een melding.
Maak eerst de tabel aan en daarna voeg je de gegevens in
Enige wat ik zo snel zie is dat de case van je engine niet klopt
Jacco Engel op 01/11/2010 11:07:03:
Enige wat ik zo snel zie is dat de case van je engine niet klopt
De case van de engine niet klopt, leg eens uit??
Het create table statement is op zich prima:
Code (php)
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
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
mysql> CREATE TABLE `tblCategorie` (
-> `Film_ID` INTEGER DEFAULT 0,
-> `Genre_ID` INTEGER DEFAULT 0,
-> INDEX (`Film_ID`),
-> INDEX (`Genre_ID`)
-> ) ENGINE=myisam DEFAULT CHARSET=utf8;
Query OK, 0 rows affected (0.02 sec)
mysql>
mysql> INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (1, 10);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (2, 1);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (3, 16);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (4, 6);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (3, 16);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (4, 6);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (5, 11);
Query OK, 1 row affected (0.00 sec)
mysql> drop table tblCategorie;
Query OK, 0 rows affected (0.00 sec)
-> `Film_ID` INTEGER DEFAULT 0,
-> `Genre_ID` INTEGER DEFAULT 0,
-> INDEX (`Film_ID`),
-> INDEX (`Genre_ID`)
-> ) ENGINE=myisam DEFAULT CHARSET=utf8;
Query OK, 0 rows affected (0.02 sec)
mysql>
mysql> INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (1, 10);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (2, 1);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (3, 16);
INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (4, 6);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (3, 16);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (4, 6);
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO `tblCategorie` (`Film_ID`, `Genre_ID`) VALUES (5, 11);
Query OK, 1 row affected (0.00 sec)
mysql> drop table tblCategorie;
Query OK, 0 rows affected (0.00 sec)
Alles werkt, het ligt misschien aan je tooling die iets niet accepteeert??
Gewijzigd op 01/11/2010 15:33:36 door Aad B