ODS.ODSProgrammersGuideImportRDF

  • Topic
  • Discussion
  • ODS.ODSProgrammersGuideImportRDF(Last) -- DAVWikiAdmin? , 2017-06-29 07:30:10 Edit WebDAV System Administrator 2017-06-29 07:30:10

    ODS RDF Import API

    DB.DBA.rdf_import

    1. Function DB.DBA.rdf_import
    2. Returns total of imported RDF triples.
    3. Description: Imports RDF data into the RDF QUAD. The function is part of the ODS Framework package. If username and password are passed as pUser and pPassword, then the imported RDF data can be viewed in the user home DAV folder/Uploads/RDF folder. This folder is created the first time the rdf_import API is called (with values for pUser and pPassword).
    4. DB.DBA.rdf_import(in URL varchar, in mode integer, [in graph varchar])
    5. Parameters:

      pURL - RDF URL source; pMode - 0 or 1; 1 - sponger mode (default); 0 - normal mode pGraph - if empty, pURL is used as graph; pUser - user name. - If value is given then a new file is created in the folder '<home>/Uploads/RDF'. - This is dynamic resource - sparql query that select all triplets from the graph pURL - and output format 'RDF' (optional); pPassword - user password (optional); pFolder - destination folder path (optional). - If not set then default folder is used from the user's home - directory - '[home dir]/Uploads/RDF/'. - The folder path must end with '/'. - The pUser must have write permissions for pFolder;

    6. Return Types: integer - the count of imported triples.
    7. Error Handling: if not valid URL is provided, is shown error message "ODS10" for invalid data.

    DB.DBA.rdf_import_ext

    1. Function DB.DBA.rdf_import_ext
    2. Returns total of imported RDF triples.
    3. Description: Imports RDF data into the RDF QUAD. The function is part of the ODS Framework package. If username and password are passed as pUser and pPassword, then the imported RDF data can be viewed in the user home DAV folder/Uploads/RDF folder. This folder is created the first time the rdf_import API is called (with values for pUser and pPassword).
    4. DB.DBA.rdf_import_ext(in pContent varchar[, in pContentMimeType varchar[, in pContentType varchar[, in pSpongerMode integer[, in pGraph varchar[, pUser, [pPassword[, pFolder]]]]]]])
    5. Parameters:

      pContent - RDF URL source or string; pContentMimeType - content mime type. Mandatory for string contents; pContentType - 'URL' or 'string'. Default value is 'URL'; pSpongerMode - 0 or 1; Default value is 1 - sponger mode; pGraph - if empty, pURL is used as graph. Mandatory for string contents; pUser - user name. - If value is given then a new file is created in the folder '<home>/Uploads/RDF'. - This is dynamic resource - sparql query that select all triplets from the graph pURL - and output format 'RDF' (optional); pPassword - user password (optional); pFolder - destination folder path (optional). - If not set then default folder is used from the user's home - directory - '[home dir]/Uploads/RDF/'. - The folder path must end with '/'. - The pUser must have write permissions for pFolder;

    6. Return Types: integer - the count of imported triples.
    7. Error Handling: if not valid URL is provided, is shown error message "ODS10" for invalid data.

    Examples

    1. Using isql execute the following statement:

      SQL> select DB.DBA.rdf_import('http://www.openlinksw.com/blog/~kidehen/gems/rss.xml');

    2. As result 7 triples should be inserted.
    3. You can check the triples from your sparql endpoint: http://[host]:[port]/sparql:
      1. Enter for Default Graph URI: http://www.openlinksw.com/blog/~kidehen/gems/rss.xml
      2. Enter for Query:

        select * from <http://www.openlinksw.com/blog/~kidehen/gems/rss.xml> where {?s ?p ?o}

    CategoryODS CategoryApplicationController CategoryAPI CategoryToBeDone CategoryProgrammersGuide


    Copyright (C) OpenLink Software 2006