Alexey Kinev
Alexey Kinev
Another approach would be to subclass `peewee_async.PooledMySQLDatabase` and override the `connect_params_async` property. ```python @property def connect_params_async(self): """Connection parameters for `aiomysql.Connection` """ kwargs = self.connect_params.copy() kwargs.update({ 'minsize': self.min_connections, 'maxsize': self.max_connections, 'autocommit':...
In the meantime, I've found this: https://github.com/buildsociety/nebula
This is probably not an issue anymore? I'm using `BinaryJSONField` with Flask-Admin without such problems.
> And I would also like to know your plans for the project I'd want to get it to mature / stable state. And I like the direction you're developing...
Hi, Sam! :) I found your component very useful, it's really simple and easy to customise! I'm using it in my current project on iOS7, it works perfectly, but I...
@aler9 Thank you so much, appreciate your help on diving into the problem. We'll pass the information to the camera manufacturer. Btw, the real offset is around 400ms, while the...
@gshmu Not sure if this call is correct, as I remember you'd need to specify fields as `only=[Project.user_id]`
@anthony-tuininga Hi Anthony, if put aside the perfomance issues, are there any workarounds to make `oracledb` not to lose the timezone information? I've even tried `cursor.outputtypehandler` with the hope to...
The problem is when in the database we have values with different time zones, the returned result would be plain wrong and we can't adjust using some fixed value. Actual...
`Manager` extracted to compatibility module in PR #232