[issue30952] [Windows] include Math extension in SQlite

2021-08-11 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: This was fixed in bpo-42686. Closing as duplicate. -- nosy: +erlendaasland resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> include built-in Math functions in SQLite to 3.35.0 of march 2021 _

[issue30952] [Windows] include Math extension in SQlite

2017-11-09 Thread Big Stone
Big Stone added the comment: Please apologize. I indeed went off-topic. I can understand few person find this request usefull, and over-react to defend it. Sorry again. -- status: pending -> open ___ Python tracker

[issue30952] [Windows] include Math extension in SQlite

2017-11-09 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue30952] [Windows] include Math extension in SQlite

2017-11-09 Thread STINNER Victor
STINNER Victor added the comment: "If you want SQlite because of its performance, recent version starts to do multi-threading, and/or fear to leave other langages a stupid sizeable performance advantage, then you may perhaps don't leave the situation as it is." I'm not sure of what you are as

[issue30952] [Windows] include Math extension in SQlite

2017-11-08 Thread Zachary Ware
Zachary Ware added the comment: I, for one, don't have the time to work on this, especially since I don't regularly use the sqlite3 module. If this is something you want, submit a PR. Lack of skill is not a legitimate reason not to do so; the devguide provides instructions on the mechanics

[issue30952] [Windows] include Math extension in SQlite

2017-11-08 Thread Big Stone
Big Stone added the comment: I know you can do create_function(): https://raw.githubusercontent.com/stonebig/sqlite_bro/master/docs/sqlite_bro.GIF But the performance is crappy at best because of string conversion in the API. If you want SQlite because of its performance, recent version start

[issue30952] [Windows] include Math extension in SQlite

2017-11-06 Thread Peter Otten
Peter Otten <__pete...@web.de> added the comment: A possible workaround is to use create_function(): >>> import sqlite3, math >>> db = sqlite3.connect(":memory:") >>> db.execute("select sin(?);", (math.pi,)).fetchone() Traceback (most recent call last): File "", line 1, in sqlite3.Operational

[issue30952] [Windows] include Math extension in SQlite

2017-11-06 Thread STINNER Victor
Change by STINNER Victor : -- title: include Math extension in SQlite -> [Windows] include Math extension in SQlite ___ Python tracker ___ _