Re: Reconfigure Netbeans 14 JDK 18 defaults

2023-02-13 Thread Sean Carrick
Amitabh, In your module.info file for each module that needs access to the Java SQL API, you must put the following: module my.module.name {     requires java.sql;     // Rest of your module configuration, such as exports, uses, provides, etc. } Since the Java SQL API is not in the java.

Re: Reconfigure Netbeans 14 JDK 18 defaults

2023-02-13 Thread Amitabh Choudhury
As noted Libraries has java.base. This include the basic packages of JDK, but java.sql is missing. Please guide on how to include java.sql package in java.base. Warm wises On Mon, Feb 13, 2023 at 9:08 PM Amitabh Choudhury wrote: > Hello. > > I am using Netbeans 14 with JDK 18. All was well