DB.DBA.RDF_QUAD_URI_L_TYPED
Performs simple insertion of a quad where object is a literal value in 'SQL valmode' and can be specified datatype and language.
DB.DBA.RDF_QUAD_URI_L_TYPED
(in g_uri varchar,
in s_uri varchar,
in p_uri varchar,
in o_lit any,
in dt any,
in lang varchar);
Description
Performs simple insertion of a quad where object is a literal value in 'SQL valmode' and can be specified datatype and language. The arguments g_uri, s_uri and p_uri should be IRI strings or IRI_IDs. All string arguments should be in UTF-8 encoding, otherwise they will be stored but are not queryable via SPARQL.
Parameters
g_uri –
graph uri IRI string or IRI_ID
s_uri –
subject IRI string or IRI_ID
p_uri –
predicate IRI string or IRI_ID
o_uri –
string value of the literal
dt –
datatype as IRI string or IRI_ID, can be NULL
lang –
language as string or NULL
Examples
SQL>DB.DBA.RDF_QUAD_URI_L_TYPED ('g_many', 's1', 'p_some', 'z016,g_many,s1,p_some', null, 'en');
Done. -- 0 msec.