use TDengine.Query(conn, commandText);
It returned intPrt value is not 0,
TDengine.Error() show Illegal byte sequence
anyone know how to resolve?
use TDengine.Query(conn, commandText);
It returned intPrt value is not 0,
TDengine.Error() show Illegal byte sequence
anyone know how to resolve?
Copyright © 2021 Jogjafile Inc.
This should happened under windows. This is because in Windows, C# using UFT-16. That means the parameter
commandTextis in UFT-16. However lib.taos accpet UTF-8 input. You need to change the `commandText in UTF-8.