Sergey Malinin
Sergey Malinin
Sorry, it looks, I did something wrong, I see that only the next HTML resources is not saved properly ``` ``` The HREF for such resources isn't converted to absolute...
@slater2022 Did you use URL connection string for create VirtuosoRepository or some jdbc DataSource ? You must to set `charset` attribute to `UTF-8`, if you use DataSource, for properly work...
@slater2022 > Using VirtuosoRepository("jdbc:virtuoso://localhost:1111", "dba", "dba") It is Ok, so it is something on server side.
@pali - The sqlliteodbc driver supports Unicode ODBC calls, so it will be better to use Unicode ODBC calls, if you want to work with Unicode data, it is more...
> I quickly looked at this code and if I understood correctly, Unicode API has a switch to supply UTF-8 strings via SQLWCHAR*. But this is something which is not...
@pali Also, I think, we could to add some iODBC settings/flags for call `setlocale (LC_ALL, "");` in iODBC code, when Environment is created first time, so it must resolve your...
@matthew-wozniczka > The same thing happens if BufferLength is set exactly to the length of the string in bytes (not including the null terminator). > > In this case, we're...
@matthew-wozniczka Did you use one row binding or Array parameters binding ?
@matthew-wozniczka About call ``` SQLRETURN SQLBindParameter( SQLHSTMT StatementHandle, SQLUSMALLINT ParameterNumber, SQLSMALLINT InputOutputType, SQLSMALLINT ValueType, SQLSMALLINT ParameterType, SQLULEN ColumnSize, SQLSMALLINT DecimalDigits, SQLPOINTER ParameterValuePtr, SQLLEN BufferLength, SQLLEN * StrLen_or_IndPtr); ``` What kind...
What kind of ODBC driver did you use Unicode or ANSI ? Does it support UCS4 codepage ?