Soprano (aka QRDF) - A modular RDF storage framework

2.0.3

Soprano is a QT-based pluggable framework for RDF storage and parsing. It tries to provide a highly usable interface to several RDF storage solutions.

Quickstart

1. Create an RDF Model:

 Soprano::Model* model = Soprano::createModel();

2. Fill it with statements:

 model->addStatement( Soprano::Statement( QUrl( "http://mysite.org/data#A"), Soprano::Vocabulary::RDFS::label(), Soprano::LiteraValue( "A test resource" ) ) );

3. Read the data back:

 Soprano::StatementIterator it = model->listStatements();
 while( it.next() ) {
    displayStatement( *it );
 }

Contents

The following sections contain further information on the usage of Soprano.


Generated on Fri Mar 7 19:00:25 2008 for Soprano by  doxygen 1.5.4