Re: [DB-SIG] Improved support for prepared SQL statements

2014-12-09 Thread Daniele Varrazzo
On Tue, Dec 9, 2014 at 9:40 AM, M.-A. Lemburg wrote: > On 07.12.2014 22:06, SF Markus Elfring wrote: >> Hello, >> >> An interface for parameterised SQL statements (working with >> placeholders) is provided by the execute() method from the Cursor class >> at the moment. >> https://docs.python.org/3

Re: [DB-SIG] Improved support for prepared SQL statements

2014-12-09 Thread M.-A. Lemburg
On 07.12.2014 22:06, SF Markus Elfring wrote: > Hello, > > An interface for parameterised SQL statements (working with > placeholders) is provided by the execute() method from the Cursor class > at the moment. > https://docs.python.org/3/library/sqlite3.html#sqlite3.Cursor.execute > > I assume th

[DB-SIG] Improved support for prepared SQL statements

2014-12-09 Thread SF Markus Elfring
Hello, An interface for parameterised SQL statements (working with placeholders) is provided by the execute() method from the Cursor class at the moment. https://docs.python.org/3/library/sqlite3.html#sqlite3.Cursor.execute I assume that the "SQL Statement Object" from the SQLite C interface is r