Alexander-Poganatz / snekodbc

snekodbc is a pure Python cross platform ODBC interface module
MIT License
1 stars 0 forks source link

Can't send bytes type to database #3

Open Alexander-Poganatz opened 6 months ago

Alexander-Poganatz commented 6 months ago

The binary type checks will check for bytearray and buffer (memoryview), but not bytes

Alexander-Poganatz commented 6 months ago

I might think about this a bit because bytes can be used to send data to the database in 8 byte chunks.

Alexander-Poganatz commented 6 months ago

I think I will keep this just so there is a way to send 8-byte strings to the database for now. This can be closed when documentation is updated.