Gå til innhold

Får ikke opprettet tabell: MySQL errno: 150!


Anbefalte innlegg

Heisann!

 

Når jeg limer dette inn i PHPMyAdmin, får jeg følgende feilmelding:

Feil

 

SQL-spørring:

 

CREATE TABLE links(

id INTEGER( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ,

linksCategory_id INTEGER( 2 ) UNSIGNED NOT NULL ,

name VARCHAR( 100 ) NOT NULL ,

info VARCHAR( 100 ) NULL ,

picture VARCHAR( 100 ) NULL ,

url VARCHAR( 100 ) NOT NULL ,

PRIMARY KEY ( id ) ,

FOREIGN KEY ( linksCategory_id ) REFERENCES linksCategory( id ) ON DELETE CASCADE

) TYPE = InnoDB;

 

#1005 - Can't create table './asanefo_admin/links.frm' (errno: 150)

Peiling? Støtter ikke MySQL 4.0 InnoDB?

 

CREATE TABLE linksCategory (
 id INTEGER(2) UNSIGNED NOT NULL AUTO_INCREMENT,
 name VARCHAR(40) NOT NULL,
 PRIMARY KEY(id)
)
TYPE=InnoDB;

CREATE TABLE links (
 id INTEGER(4) UNSIGNED NOT NULL AUTO_INCREMENT,
 linksCategory_id INTEGER(2) UNSIGNED NOT NULL,
 name VARCHAR(100) NOT NULL,
 info VARCHAR(100) NULL,
 picture VARCHAR(100) NULL,
 url VARCHAR(100) NOT NULL,
 PRIMARY KEY(id),
 FOREIGN KEY(linksCategory_id) REFERENCES linksCategory(id) ON DELETE CASCADE
)
TYPE=InnoDB;

INSERT INTO linksCategory (name) VALUES('Eliteserien');
INSERT INTO linksCategory (name) VALUES('Adeccoligaen');
INSERT INTO linksCategory (name) VALUES('2. divisjon Avd. 3');
INSERT INTO linksCategory (name) VALUES('Diverse');

INSERT INTO links (linksCategory_id, name, info, picture, url) 
VALUES (1, 'SK Brann', 'Beskrivelse av SK Branns nettsted', '', 'http://www.brann.no');
INSERT INTO links (linksCategory_id, name, info, picture, url) 
VALUES (1, 'IK Start', 'Beskrivelse av IK Starts nettsted', '', 'http://www.ikstart.no');
INSERT INTO links (linksCategory_id, name, info, picture, url) 
VALUES (2, 'Løv-Ham', 'Beskrivelse av Løv-Hams nettsted', '', 'http://www.lov-ham.no');
INSERT INTO links (linksCategory_id, name, info, picture, url) 
VALUES (3, 'Fyllingen Fotball', 'Beskrivelse av Fyllingens nettsted', '', 'http://www.fyllingenfotball.no');
INSERT INTO links (linksCategory_id, name, info, picture, url) 
VALUES (4, 'Remi Sture Webutvikling', 'Ny nettside? Stikk innom her!', '', 'http://www.remisture.no');

Lenke til kommentar
Videoannonse
Annonse

Opprett en konto eller logg inn for å kommentere

Du må være et medlem for å kunne skrive en kommentar

Opprett konto

Det er enkelt å melde seg inn for å starte en ny konto!

Start en konto

Logg inn

Har du allerede en konto? Logg inn her.

Logg inn nå
  • Hvem er aktive   0 medlemmer

    • Ingen innloggede medlemmer aktive
×
×
  • Opprett ny...