The expression "a in ('abc','def')" will return either TRUE or FALSE so your 
condition devolves to "a in (TRUE, FALSE)" which is FALSE for all text values.

-----Urspr?ngliche Nachricht-----
Von: sqlite-users-bounces at mailinglists.sqlite.org 
[mailto:sqlite-users-bounces at mailinglists.sqlite.org] Im Auftrag von Richard 
Williams
Gesendet: Samstag, 09. April 2016 17:21
An: sqlite-users at mailinglists.sqlite.org
Betreff: [sqlite] Expecting syntax error on delete

I have a PHP program where I have the equivalent of the following code. The 
code was not deleting the expected rows ('abc' & 'def') because of the bad 
syntax. However the error did not throw an exception. Is this what I should 
expect?

$p = new PDO('sqlite::memory:');
$p->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $p->exec("create 
table a (a text)"); $sql = "delete from a where a in (a in ('abc','def'))"; 
$stat = $p->exec($sql); _______________________________________________
sqlite-users mailing list
sqlite-users at mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


___________________________________________
 Gunter Hick
Software Engineer
Scientific Games International GmbH
FN 157284 a, HG Wien
Klitschgasse 2-4, A-1130 Vienna, Austria
Tel: +43 1 80100 0
E-Mail: hick at scigames.at

This communication (including any attachments) is intended for the use of the 
intended recipient(s) only and may contain information that is confidential, 
privileged or legally protected. Any unauthorized use or dissemination of this 
communication is strictly prohibited. If you have received this communication 
in error, please immediately notify the sender by return e-mail message and 
delete all copies of the original communication. Thank you for your cooperation.


Reply via email to