Chr0n
Lieutenant
- Registriert
- Jan. 2007
- Beiträge
- 528
Ok also erstmals, ich habe noch nie vorher mit MySQL gearbeitet, deswegen halte ich mich genau an die Anweisungen von WPKG WEB (klick)
Es funktioniert auch alles soweit, bloß bei dieser Zeile: mysql -p < db/schema.sql
bekomme ich folgenden Fehler:
Die dazu passende Zeile in der schema.sql:
Was ist daran falsch? Vielleicht schwirrt hier ja jemand rum, der mehr Ahnung von MySQL hat als ich.
TIA
Es funktioniert auch alles soweit, bloß bei dieser Zeile: mysql -p < db/schema.sql
bekomme ich folgenden Fehler:
Code:
C:\Programme\MySQL\MySQL Server 5.0\bin>mysql -u root -p < "C:\Dokumente und Einstellungen\admin\Desktop\wpkg_web-1.1.0\db/schema.sql"
Enter password: ******
ERROR 1064 (42000) at line 125: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-
create table pack_checks (
id int unsigned not null auto_increment' at line 1
Die dazu passende Zeile in der schema.sql:
Code:
-- Check definition:
-- ()chklevel - Current Level #
-- ()prnlevel - NULL
-- ()chklog_id - NULL
-- ()chktype_id - ID from pack_chktype
-- ()chkcond_id - ID from pack_chkconditions
-- ()path - Path for the check ( type of path depends on chktype )
--- ()value - Value for check ( if check type is not 'exists' )
create table pack_checks ( -- Checks for packages to determin need of installation
id int unsigned not null auto_increment,
pack_id int unsigned not null default 0, -- Package for which this check applies
primary key ( id,pack_id ),
chklevel int unsigned not null default 0, -- For nested checking support
prnlevel int default NULL, -- Parent Check Level !=NULL means this is a level definition.
chklog_id int unsigned default NULL, -- Logic type - !=NULL means this is a level definition.
chktype_id int unsigned default NULL, -- Check Type ID (pack_chktype table)
chkcond_id int unsigned default NULL, -- Check Condition ID (pack_chkconditions table)
path varchar(200) default NULL, -- Path for check ( type of path depends on chktype )
value varchar(200) default NULL -- Value ( for File & Registry Checks )
) TYPE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci;
Was ist daran falsch? Vielleicht schwirrt hier ja jemand rum, der mehr Ahnung von MySQL hat als ich.
TIA
Zuletzt bearbeitet: