On 19-1-2019 14:23, Jesse Rittner wrote:
What language do you want to use? Parameter binding is a feature of the
SQLite C API. So pretty much any language with a C FFI will suffice. There's
a list on Wikipedia, not sure how authoritative it is.
https://en.wikipedia.org/wiki/SQLite#Programming_language_support (Note:
When it says they "provide bindings for SQLite", it's referring to the FFI,
not parameter binding.)


This question is not about: 'parameter binding'!

It's about 'variable decalaration'...


In MS-SQL you can do things like:

C:\temp>PSQL.EXE -E -S SQL2017DEV

1> declare @count int = 10;
2> select * from test where i<=@count
3> go
 i
 -----------
           1
           2
           3
           4
           5
           6
           7
           8
           9
          10

(10 rows affected)
1>



_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to