Pavel Kirilin
Pavel Kirilin
Hi. I don't think that supporting such types is inside the scope of the driver. Here's an example of how you can insert numpy array in your database without any...
Agree. That'd be great.
🤔 Thanks for suggestion. We will take a look.
Actually, you might add this. It shouldn't be problematic to implement. I like the idea, although in docs you should state that people should not call it everytime they want...
Can you provide me with example of how you want to use it? Minimal application.
You should not do so under any circumstances. It is going to be disastrously slow, because it is going to create a connection pool on every request. When you call...
Hello! Thanks for your cotribution. Have you tried using BigInt instead of python's integer? There're extra types which you can use: https://github.com/Intreecom/scyllapy#extra-types The `column_type` parameter only set for prepared queries,...
Will see what I can do to fix that moment.
For such ambiguous types we have special wrappers in [scyllapy.extra_types](https://github.com/Intreecom/scyllapy/blob/develop/python/scyllapy/_internal/extra_types.pyi). And python UUIDs should work, since we test it [here](https://github.com/Intreecom/scyllapy/blob/863da3967c1478ea5fe7a3961d3eb236a34b69af/python/tests/test_bindings.py#L27). Actually, autocast is possible for prepared statements by using metadata....
I'm currently working on a small ORM, but don't have much time to complete it.