Package com.complexible.stardog.api

Provides the core SNARL (Stardog Native API for the RDF Language) classes and interfaces for programmatic access to the Stardog DBMS.

The SNARL Connection class provides the ability to manipulate data and perform SPARQL queries against a Stardog database. AdminConnection provides access to the administrative functions of Stardog.

A Connection can be created using ConnectionConfiguration:


   Connection aConn = ConnectionConfiguration
      .to("testConnectionAPI")
      .credentials("admin", "admin")
      .connect();