Changes between Version 2 and Version 3 of Ticket #28274


Ignore:
Timestamp:
Jun 6, 2017, 5:35:15 AM (7 years ago)
Author:
Adama Camara
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28274 – Description

    v2 v3  
    11I am running some test, but I keep getting this error:
    22
     3
     4
     5{{{
    36self = <django.db.backends.sqlite3.base.SQLiteCursorWrapper object at 0x7f619aa32d38>
    47query = '        SELECT cust.id, cust.name, inv.currency_id, SUM(inv.total)\n        FROM\n          v3_customer as cust\n    ...        and inv.invoice_date < ?\n        GROUP BY cust.id, inv.currency_id\n        ORDER BY cust.id, inv.currency_id'
    58params = [(1, 2, 3, 4), '2016-12-08']
    69
    7 def execute(self, query, params=None):
     10    def execute(self, query, params=None):
    811        if params is None:
    912            return Database.Cursor.execute(self, query)
     
    1316
    1417../../../environments/tracerenv/lib/python3.4/site-packages/django/db/backends/sqlite3/base.py:337: OperationalError
     18
     19}}}
     20
     21
    1522
    1623When looking at the SQL statements and trying to find the "?" symbol it does not appear:
Back to Top