Caused by: com.complexible.stardog.StardogException: No driver was found which supports the connection string: 'embed://DBName', please double-check the URL and verify the protocol is correct and try again.
at com.complexible.stardog.api.DriverManager.getDriver(DriverManager.java:68)
at com.complexible.stardog.api.DriverManager.getConnection(DriverManager.java:81)
This is the error i get when i try to access DB in my stardog instance. Also, I started like this:
try (Connection aConn = ConnectionConfiguration
.to(ConfigProperty.sdbname)
.credentials(ConfigProperty.suser, ConfigProperty.spassword)
.connect()) {
aConn.begin();
As i do not want to start a new instance of stardog but to use the one already running in the background. Am i missing something??
This code was working fine earlier.
Thank you!