Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-2851

Corrections to client DataSource access example in the Server and administration guide

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • 10.3.1.4
    • Test
    • None

    Description

      http://db.apache.org/derby/docs/dev/adminguide/radminnsdatasourcexmp.html

      Shows an example for getting a connection through a DataSource by setting databaseName to "mydb;create=true". It should be changed to use "mydb" and use setCreateDatabase("create"). Also the comment that user/password are required is not correct.

      I think the getDS method can be removed and the example can just look like:

      org.apache.derby.jdbc.ClientDataSource ds =
      new org.apache.derby.jdbc.ClientDataSource();

      // DatabaseName can include Derby URL Attributes

      ds.setDatabaseName("mydb");
      ds.setCreateDatabase("create");
      ds.setUser("user");
      ds.setPassword("mypass");

      // The host on which Network Server is running
      ds.setServerName("localhost");

      // port on which Network Server is listening
      ds.setPortNumber(1527);

      Connection conn = ds.getConnection();

      Attachments

        1. radminnsdatasourcexmp.html
          3 kB
          Laura Stewart
        2. derby2851.diff
          2 kB
          Laura Stewart
        3. derby2851_2.diff
          2 kB
          Laura Stewart

        Activity

          People

            scotsmatrix Laura Stewart
            kmarsden Katherine Marsden
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: