-
- cafs

-
Total Posts: 9
Joined: 2007-11-01
|
I still get the same problem…
Look at message below.
Thanks.
PDOException Object
(
[message:protected] => SQLSTATE[HY000]: General error: 2014 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.
[string:private] =>
[code:protected] => HY000
[file:protected] => C:\xampp\htdocs\magento\lib\Varien\Db\Adapter\Pdo\Mysql.php
[line:protected] => 109
[trace:private] => Array
(
[0] => Array
(
[file] => C:\xampp\htdocs\magento\lib\Varien\Db\Adapter\Pdo\Mysql.php
[line] => 109
[function] => query
[class] => PDO
[type] => ->
[args] => Array
(
[0] =>
DROP TABLE IF EXISTS `core_config_data`;
CREATE TABLE `core_config_data` (
`config_id` int(10) unsigned NOT NULL auto_increment,
`scope` enum(’default’,’websites’,’stores’,’config’) NOT NULL default ‘default’,
`scope_id` int(11) NOT NULL default ‘0’,
`path` varchar(255) NOT NULL default ‘general’,
`value` text NOT NULL,
PRIMARY KEY (`config_id`),
UNIQUE KEY `config_scope` (`scope`,`scope_id`,`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `core_email_template`;
CREATE TABLE `core_email_template` (
`template_id` int(7) unsigned NOT NULL auto_increment,
`template_code` varchar(150) default NULL,
`template_text` text,
`template_type` int(3) unsigned default NULL,
`template_subject` varchar(200) default NULL,
`template_sender_name` varchar(200) default NULL,
`template_sender_email` varchar(200) character set latin1 collate latin1_general_ci default NULL,
`added_at` datetime default NULL,
`modified_at` datetime default NULL,
PRIMARY KEY (`template_id`),
UNIQUE KEY `template_code` (`template_code`),
KEY `added_at` (`added_at`),
KEY `modified_at` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=’Email templates’;
insert into `core_email_template`(`template_id`,`template_code`,`template_text`,`template_type`,`template_subject`,`template_sender_name`,`template_sender_email`,`added_at`,`modified_at`) values
(1,’New account (HTML)’,’
|