From 8a929e054e7826f95a474eccc26a68621ab24dfc Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Wed, 5 Oct 2005 22:14:52 +0000 Subject: [PATCH] use the right constant name in error messages --- ext/pdo_mysql/mysql_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pdo_mysql/mysql_driver.c b/ext/pdo_mysql/mysql_driver.c index f4544a3c0f..93dd241faf 100755 --- a/ext/pdo_mysql/mysql_driver.c +++ b/ext/pdo_mysql/mysql_driver.c @@ -75,7 +75,7 @@ int _pdo_mysql_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, const char *file, int lin "Cannot execute queries while other unbuffered queries are active. " "Consider using PDOStatement::fetchAll(). Alternatively, if your code " "is only ever going to run against mysql, you may enable query " - "buffering by setting the PDO_MYSQL_ATTR_USE_BUFFERED_QUERY attribute.", + "buffering by setting the PDO::MYSQL_ATTR_USE_BUFFERED_QUERY attribute.", dbh->is_persistent); } } else { /* no error */ -- 2.50.1