Pietro

Results 46 comments of Pietro

> A holding register contains bytes (2 pr register) and not bits. Normally you interpret a holding register as an int. > > You should be able to use result.registers...

> Because that is how it is programmed smiley > > consider using e.g. decoder.decode_16bit_uint(), or make 2 calls to BinaryPayloadDecoder / decoder.decode_bits. Mine was not meant to be a...

Thank you @Murmele , I'm also waiting for this feature :)

> I had this problem too a few versions of flatpak ago. Which version of flatpak are you using? Flatpak 1.12.7 The official ppa doesn't support ubuntu 22.04 yet

> Is the "other client" also using FreeTDS? No, i'm using Dbeaver with a JDBC Driver

> Can you please then check if this is also happening with FreeTDS and `pyodbc`? I would currently guess that this is a FreeTDS issue as `ODBC errors` are normally...

> MS SQL Server does not allow the alias to be used in the WHERE clause. (I believe Oracle does allow this.) Try writing the WHERE clause in longhand, as...

> Alternatively, use a subquery or CTE: > > ``` > WITH T AS > ( > SELECT ID, Postazione, Data, ora, CAST(Data as DATETIME) + CAST(ora as DATETIME) AS...

> @xhochy Does turbodbc support TIME datatypes? Issue #85 implies is doesn't, but the [docs](https://turbodbc.readthedocs.io/en/latest/pages/getting_started.html?#supported-data-types) state it does. I was relying on the documentation and I was assuming it was...

> > @xhochy Does turbodbc support TIME datatypes? Issue #85 implies is doesn't, but the [docs](https://turbodbc.readthedocs.io/en/latest/pages/getting_started.html?#supported-data-types) state it does. > > Someone would need to write a test, I'm not...