Wednesday, October 9, 2019

Integeration Database Derby in InteliJ

https://www.jetbrains.com/help/idea/connecting-to-a-database.html#connect-to-derby-database


 Apache Derby

Apache Derby

1.       In the Database tool window (View | Tool Windows | Database), click the Data Source Properties icon The Data Source Properties icon.

2.       In the Data Sources and Drivers dialog, click the Add icon (The Add icon) and select Apache Derby.

3.       From the Driver list, select the type of the JDBC driver that you want to use. For remote connections, select Apache Derby (Remote). For embedded databases, select Apache Derby (Embedded).

4.       At the bottom of the data source settings area, click the Download missing driver files link. Alternatively, you can specify user drivers for the data source. For more information about user drivers, see Add a user driver to an existing connection.

5.       Specify database connection details. Alternatively, paste the JDBC URL in the URL field.

To delete a password, right-click the Password field and select Set empty.

6.       To ensure that the connection to the data source is successful, click Test Connection.




No comments:

Post a Comment

CORBA Java Tutorial using Netbeans and Java 8.

CORBA-Example A simple CORBA implementation using Java Echo.idl module EchoApp{ interface Echo{ string echoString(); }; }; ...