Hi, 
It seems the newest version of stardog isn't compatible with the manual. I was trying to connect server in java, but failed.
  Connection aConn = ConnectionConfiguration.to("myDB").server(aServerUrl).credentials("admin", "admin").connect();"
By doing above, it returns error with 
"Exception in thread "main" com.complexible.stardog.StardogException: No driver was found which supports the connection string: '
http://localhost:5820/myDB', please double-check the URL and verify the protocol is correct and try again."
I am very sure I have started the server from command line and the store name is correct. 
Then, i tried to start server in java directly (of course i stopped the server already)
By doing, "Server aServer = Stardog.buildServer().bind(SNARLProtocol.EMBEDDED_ADDRESS).start();",  however the newest version doesn't contain stardog class at all, it was in com.complexible.stardog. 
So, any suggestion? how should I do with the newest stardog? 
Any helps are appreciated.