Hello Sebastian,
flags are:
0x1 - The string is an IRI (say, RDF ref). It should be UTF-8.
0x2 - The string is supposed to be UTF-8, an error may be signalled if
it is not so.
0x4 - The string is supposed to be in default server encoding. This is
not used if UTF-8 is default server encoding, 0x2 i
HI Sebastian,
The documentation of the Virtuoso RDF ODBC extensions[1] contains an error:
In the example the box flags are compared to 1 to determine if the result is a
IRI:
switch (dvtype)
{
case VIRTUOSO_DV_STRING:
{
if (flag == 1)
In fact it needs to be:
s
The documentation of the Virtuoso RDF ODBC extensions[1] contains an error:
In the example the box flags are compared to 1 to determine if the result is a
IRI:
switch (dvtype)
{
case VIRTUOSO_DV_STRING:
{
if (flag == 1)
In fact it needs to be:
switch (dvtype)