From d807c54d311a09f6d0acbdb27f9ec0918757fd45 Mon Sep 17 00:00:00 2001 From: Mridul Regmi Date: Sun, 13 Feb 2022 13:15:59 -0500 Subject: [PATCH] Readme.md update --- docs/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/README.md b/docs/README.md index 3867b510..6d36a13f 100644 --- a/docs/README.md +++ b/docs/README.md @@ -46,6 +46,7 @@ public class DemoDriver // A single connection is thread-safe for use by several threads. String url = "jdbc:relique:csv:" + args[0] + "?" + "separator=;" + "&" + "fileExtension=.txt"; + Class.forName("org.relique.jdbc.csv.CsvDriver"); try (Connection conn = DriverManager.getConnection(url); // Create a Statement object to execute the query with.