INSERT INTO Category (CategoryId, CategoryName, ParentCategoryId) VALUES (Category_seq.nextval, "Sidernes baggrundsbilleder", 0) INSERT INTO Category (CategoryId, CategoryName, ParentCategoryId) VALUES (Category_seq.nextval, "Billeder og diagrammer", 0) INSERT INTO Category (CategoryId, CategoryName, ParentCategoryId) VALUES (Category_seq.nextval, "Fotografier", 0) INSERT INTO Category (CategoryId, CategoryName, ParentCategoryId) VALUES (Category_seq.nextval, "Andet", 0) INSERT INTO Category (CategoryId, CategoryName, ParentCategoryId) VALUES (Category_seq.nextval, "Logos", 0)
...og her kommer fejlen så: Warning: ociexecute(): OCIStmtExecute: ORA-00933: SQL-kommando er ikke korrekt afsluttet in c:\programmer\oracledb\apache\apache\htdocs\inc\func_database.inc on line 83
Denne side indeholder artikler med forskellige perspektiver på Identity & Access Management i private og offentlige organisationer. Artiklerne behandler aktuelle IAM-emner og leveres af producenter, rådgivere og implementeringspartnere.
Har nu rettet sql til: INSERT INTO Category (CategoryId, CategoryName, ParentCategoryId) VALUES (Category_seq.nextval, 'Sidernes baggrundsbilleder', 0); INSERT INTO Category (CategoryId, CategoryName, ParentCategoryId) VALUES (Category_seq.nextval, 'Billeder og diagrammer', 0); INSERT INTO Category (CategoryId, CategoryName, ParentCategoryId) VALUES (Category_seq.nextval, 'Fotografier', 0); INSERT INTO Category (CategoryId, CategoryName, ParentCategoryId) VALUES (Category_seq.nextval, 'Andet', 0); INSERT INTO Category (CategoryId, CategoryName, ParentCategoryId) VALUES (Category_seq.nextval, 'Logos', 0);
Men får denne fejl: Warning: ociexecute(): OCIStmtExecute: ORA-00911: ugyldigt tegn in c:\programmer\oracledb\apache\apache\htdocs\inc\func_database.inc on line 83
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.