Changes between Version 2 and Version 3 of Ticket #28274
- Timestamp:
- Jun 6, 2017, 5:35:15 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28274 – Description
v2 v3 1 1 I am running some test, but I keep getting this error: 2 2 3 4 5 {{{ 3 6 self = <django.db.backends.sqlite3.base.SQLiteCursorWrapper object at 0x7f619aa32d38> 4 7 query = ' 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' 5 8 params = [(1, 2, 3, 4), '2016-12-08'] 6 9 7 def execute(self, query, params=None):10 def execute(self, query, params=None): 8 11 if params is None: 9 12 return Database.Cursor.execute(self, query) … … 13 16 14 17 ../../../environments/tracerenv/lib/python3.4/site-packages/django/db/backends/sqlite3/base.py:337: OperationalError 18 19 }}} 20 21 15 22 16 23 When looking at the SQL statements and trying to find the "?" symbol it does not appear: