I an complete beginner regarding RDF Stores / Semantic Web so this is rather a basic question. In RDBMS or Neo4j you can create new database with "CREATE DATABASE"-Command. But how does it work with apache jena tdb?
I couldn't find anything specific or maybe the answer is too obvious: I don't know if this is the correct approach, but it seems like it can be done with TDB Datasets ? Though I am not sure if this is the same as creating a database like in a RDBMS.
In Apache Jena, a dataset can be seen as the equivalent of a RDBMS or Neo4j database.
You can create a TDB dataset and add RDF triples in it like this:
To query the dataset with a SPARQL query, you can do like this:
For more information, read the documentation.