package com.franz.agbase.examples;
import com.franz.agbase.*;
public class AGCreateTripleStore {
/**
* Demonstrates basics of creating a triple store
*
* @param args unused
* @throws AllegroGraphException
*/
public static void main(String[] args) throws AllegroGraphException {
// Connect to the server, which must already be running.
AllegroGraphConnection ags = new AllegroGraphConnection();
try {
ags.enable();
} catch (Exception e) {
throw new AllegroGraphException("Server connection problem.", e);
}
// Create a triple store -- an exception is thrown if it already exists.
System.out.println("Attempting to create a triple store.");
try {
AllegroGraph ts = ags.create("nonexistingstore", AGPaths.TRIPLE_STORES);
System.out.println("Triple store created.");
// Close the triple store
System.out.println("Closing the triple store.");
ts.closeTripleStore();
} catch (Exception e) {
System.out.println(e.getMessage());
}
// Disconnect from the server
System.out.println("Disconnecting from the server.");
ags.disable();
System.out.println("Done.");
}
}
Copyright © 2023 Franz Inc., All Rights Reserved | Privacy Statement |