Project

General

Profile

Actions

Bug #43470

closed

SQL engine parse ERROR: Still content in clause after parsing!: near "; "

Added by Stefan Neufeind over 11 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Category:
Database API (Doctrine DBAL)
Target version:
-
Start date:
2012-11-29
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
6.0
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

(this occured when using dbal - but problem is in the sql-parser in core)

How to reproduce:
  • dbal activated
  • installing "dam"

Fails with exception

SQL engine parse ERROR: Still content in clause after parsing!: near "; "

thrown in parseCREATEDATABASE() in
typo3/sysext/core/Classes/Database/SqlParser.php

Query leading to this:
string(308) "CREATE TABLE tx_dam_media_types (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
ext varchar(5) DEFAULT '' NOT NULL,
mime varchar(64) DEFAULT '' NOT NULL,
type int(11) DEFAULT '0' NOT NULL,
icon varchar(64) DEFAULT '' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);
"

Doing a trim() on the query beforehand it works without any problems. I expect there are newlines or maybe a tab at the end of that string.

Actions

Also available in: Atom PDF