Steven Blowers
Steven Blowers
I made a similar PR request to [elixir-lang/elixir](https://github.com/elixir-lang/elixir) in the past and it got rejected, I think this one just comes down to personal preference.
I guess the key word in his response is > mostly
> Same problem here since upgrading to Ubuntu 22.04. Solution: > > * Open the Firefox Preferences > > * Enter certificates into the search box on the top >...
any update on this?
@fishcakez getting errors when I'm trying out new version of DBConnection because the arity of `DBConnection.transaction` has changed, opened up potential fix here: https://github.com/elixir-ecto/db_connection/pull/93
Have started work in this branch: [dbconnection_update_2](https://github.com/findmypast-oss/mssqlex/tree/dbconnection_update_2)
I had a go at doing a similar issue to this myself a few months ago, around adding a `datetimeoffset` column https://github.com/findmypast-oss/mssqlex/issues/7. That code base was just far too complex...
Hi @brentweber I will look into whether supporting this requires a change to msql_ecto or a change to Erlang ODBC
Hi @brentweber have investigated supporting XML type and will require a change to Erlang ODBC rather than mssql_ecto or mssqlex. @toddharding is currently looking at making a change to Erlang...
Leaving this here for future reference. Testing XML type. ```elixir test "xml", %{pid: pid} do assert {_query, %Result{columns: ["test"], rows: [["Hello"]]}} = act(pid, "xml", ["Hello"]) end ```