Åsmund Hjulstad

Results 6 comments of Åsmund Hjulstad

Works for me: ``` import Pkg Pkg.activate(".") # Pkg.add(["ODBC", "DBInterface", "DataFrames"]) using Revise import ODBC using DBInterface using DataFrames ODBC.adddriver("ODBC Driver 18 for SQL Server", "/opt/microsoft/msodbcsql18/lib64/libmsodbcsql-18.3.so.2.1") mssql = ODBC.Connection("Driver={ODBC Driver...

I also experience this. The bug does not appear when testing the same ODBC driver from Python; this seems to be an issue in ODBC.jl, or possibly Base.UUID? (Julia 1.9.3...

Looks very much like something related to byte order: ```julia res = DBInterface.execute(mssql, "SELECT CONVERT(uniqueidentifier, 'ABCD0000-0000-0000-1234-000000000000') AS anid, 'ABCD0000-0000-0000-1234-000000000000' AS strid", debug=true) for r in Tables.rows(res) print(r) end # ODBC.Row:...

This task has grown larger than what I was originally expecting, and help is needed on some items: - [ ] tests involving `getproperty(row, prop)`. - [ ] the TIME...

Thank you for a quick response. I did not realise they were separate schemas, and not just part of the table name. When specifying schema it works as expected. However,...

I don't know if it is relevant, but I am using an external volume mount in a docker compose file to share the `~/.julia` folder between my devcontainers. As first...