dg / dibi

Dibi - smart database abstraction layer

Home Page:https://dibiphp.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alone quote in SQL comment causes SQL translate error

dakur opened this issue · comments

commented

Version: dev-master

Bug Description

When you use single quote ' or " in a SQL comment, dibi fails with Dibi\Exception: SQL translate error: Alone quote

Steps To Reproduce

Make a comment in SQL query containg single ' or " in it. E.g. in tests/dibi/Connection.fetch.phpt:

$res = $conn->query(<<<SQL
SELECT [title] FROM [products] ORDER BY [product_id] -- this isn't working
SQL
);

Expected Behavior

Pass without problem

Please send a PR if you can fix this.

commented

Sorry, not that easy for me..