* @param url The <code>String</code> location of the data
* @param syntax The <code>String</code> syntax of the data
* @throws Exception For any problems encountered during read of data from the URL
*/
public static void read(Repository store, String url, String syntax) throws Exception {
RDFFormat format = null;
if (syntax.equals("TURTLE") || syntax.equals("N3"))
format = RDFFormat.TURTLE;
else if (syntax.equals("RDFXML"))
format = RDFFormat.RDFXML;
else if (syntax.equals("NTRIPLES"))