tvandinther / libsql-client-dotnet

A .NET client for libsql
https://www.nuget.org/packages/Libsql.Client
MIT License
60 stars 3 forks source link

Column names and string values are parsed incorrectly on Windows #8

Closed tvandinther closed 1 year ago

tvandinther commented 1 year ago

Operating system: Windows 11 Version: 0.2.2

Actual:

??r??? ???, ??, ?????????l??????????????'??↑??????, ??
------------------------
1, ??????, 182.6, [ a4 c7 b8 e2 ... 9a 09 3f ed ]
2, ????, 0.5, [ 00 ]

Expected:

id, name, height, data
------------------------
1, John Doe, 182.6, [ a4 c7 b8 e2 ... 9a 09 3f ed ]
2, Jane Doe, 0.5, [ 00 ]
tvandinther commented 1 year ago

I suspect it is trying to stringify a pointer. Each execution has a different series of ?????

tvandinther commented 1 year ago

Fixed in v0.2.3