|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-03-10 17:21 UTC] carsten_sttgt at gmx dot de
[2011-03-11 04:49 UTC] aharvey@php.net
-Status: Open
+Status: Bogus
[2011-03-11 04:49 UTC] aharvey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 18:00:01 2025 UTC |
Description: ------------ in mysql_query is impossible to execute command DELIMITER | for example mysql_query('DELIMITER |'); this ends with mysql syntax error 1064 ... when delimiter is not function... is impossible to run command CREATE TRIGGER because at the end of this command is always ... ; END ... --- From manual page: http://www.php.net/function.mysql-query#Description --- Test script: --------------- mysql_query('DELIMITER |'); mysql_query('SHOW TABLES|'); mysql_query('DELIMITER ;'); Expected result: ---------------- enable delimiter