public Connection dbConn() {
         // Both the remote and local JDatastore drivers use the same
         // driver string:
         String DRIVER =   "com.borland.datastore.jdbc.DataStoreDriver";
        // Use this string for the local driver:
        String URL    =   "jdbc:borland:dslocal:";
        // Use this string for the remote driver (and start JDataStore Server):
        //  String URL =  "jdbc:borland:dsremote://localhost/";
        String FILE   =   "D:\\JbSwing\\y\\h.jds";
        boolean c_open=false;
        Connection con = null;        try {
                Class.forName(DRIVER);
                con = DriverManager.getConnection(URL + FILE, "sample", "");
                c_open = true;
                return con;
        }
        catch (Exception e) {
                System.out.println(e);
                return null;
        }
 }