kishmish
kishmish

Reputation: 17

Opencart Checkout my sql error

HI whenever we use bussoc paypal express checkout option.. after enter paypal account login and payment proceed button there appear a msg with mysql server error, Here msg appear wheneven a customer coming back after made payment on paypal

Notice: error, you have an error in your SQL syntax check the manual that corresponds to your MYSQL server version for the right syntax to use near order SET customer_id='27' WHERE order_id='279' at line 1

Error no 1064

UPDATE order SET customer_id='27'WHERE order_id='279' in home/public_html/site/system/database/mysql.php line 49 Here is query. so where it need changes?

<?php
final class MySQL {
private $connection;

public function __construct($hostname, $username, $password, $database) {
    if (!$this->connection = mysql_connect($hostname, $username, $password)) {
        exit('Error: Could not make a database connection using ' . $username . '@' . $hostname);
    }

    if (!mysql_select_db($database, $this->connection)) {
        exit('Error: Could not connect to database ' . $database);
    }
    
    mysql_query("SET NAMES 'utf8'", $this->connection);
    mysql_query("SET CHARACTER SET utf8", $this->connection);
    mysql_query("SET CHARACTER_SET_CONNECTION=utf8", $this->connection);
    mysql_query("SET SQL_MODE = ''", $this->connection);
}
    
public function query($sql) {
    $resource = mysql_query($sql, $this->connection);

    if ($resource) {
        if (is_resource($resource)) {
            $i = 0;
    
            $data = array();
    
            while ($result = mysql_fetch_assoc($resource)) {
                $data[$i] = $result;
    
                $i++;
            }
            
            mysql_free_result($resource);
            
            $query = new stdClass();
            $query->row = isset($data[0]) ? $data[0] : array();
            $query->rows = $data;
            $query->num_rows = $i;
            
            unset($data);

            return $query;  
        } else {
            return true;
        }
    } else {
        trigger_error('Error: ' . mysql_error($this->connection) . '<br />Error No: ' . mysql_errno($this->connection) . '<br />' . $sql);
        exit();
    }
}

public function escape($value) {
    return mysql_real_escape_string($value, $this->connection);
}

public function countAffected() {
    return mysql_affected_rows($this->connection);
}

public function getLastId() {
    return mysql_insert_id($this->connection);
}   

public function __destruct() {
    mysql_close($this->connection);
}
}
?>

Upvotes: 1

Views: 2329

Answers (2)

Tanmoy
Tanmoy

Reputation: 1035

update `oc_order` 
SET customer_id='27' 
WHERE order_id='279'

you have add the prefix for the table name.This prefix has been added, when you have installed opencart.

By default it's 'oc_', if you change that then replace it with that

Upvotes: 1

juergen d
juergen d

Reputation: 204766

Your table name is order. That is a reserved keyword in MySQL. You need to escape it with backticks

update `order` 
SET customer_id='27' 
WHERE order_id='279'

Upvotes: 1

Related Questions