Name
DB.DBA.RDF_QUAD_URI_L — Performs simple insertion of a quad where object is a literal value in 'SQL valmode'.
Synopsis
DB.DBA.RDF_QUAD_URI_L
(
|
in g_uri varchar , |
in s_uri varchar , | |
in p_uri varchar , | |
in
o_lit
any
) ; |
Description
Performs simple insertion of a quad where object is a literal value in 'SQL valmode'. 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, number or datetime, NULL is not allowed
Return Types
any
Examples
Example 24.308. Simple example
SQL>DB.DBA.RDF_QUAD_URI_L ('g_many', 's1', 'p_some', 'z016,g_many,s1,p_some'); Done. -- 0 msec.