This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 20870
Collapse All | Expand All

(-)PointbasePlus.java (-4 / +4 lines)
Lines 47-62 Link Here
47
    
47
    
48
    /** The database URL to create the connection to sample database */
48
    /** The database URL to create the connection to sample database */
49
    //public static final String DATABASE_URL = "jdbc:pointbase://embedded/sample";
49
    //public static final String DATABASE_URL = "jdbc:pointbase://embedded/sample";
50
    public static final String DATABASE_URL = "jdbc:pointbase://localhost:9092/sample";
50
    public static final String DATABASE_URL = "jdbc:pointbase:server://localhost:9092/sample";
51
    
51
    
52
    /** The user name to create the connection to sample database */
52
    /** The user name to create the connection to sample database */
53
    public static final String USER_NAME = "public";
53
    public static final String USER_NAME = "pbpublic";
54
    
54
    
55
    /** The schema name to create the connection to sample database */
55
    /** The schema name to create the connection to sample database */
56
    public static final String SCHEMA_NAME = "PUBLIC";
56
    public static final String SCHEMA_NAME = "PBPUBLIC";
57
    
57
    
58
    /** The password to create the connection to sample database */
58
    /** The password to create the connection to sample database */
59
    public static final String PASSWORD = "public";
59
    public static final String PASSWORD = "pbpublic";
60
    
60
    
61
    /*error code if pointbase network server doesn't run*/
61
    /*error code if pointbase network server doesn't run*/
62
    public static final int ERR_SERVER_REJECTED = 86024;
62
    public static final int ERR_SERVER_REJECTED = 86024;

Return to bug 20870