Creates an instance of a java class, makes a global reference in the Java VM and returns it to Virtuoso as a PL object reference value.
Virtuoso object reference value.
creates a new java.util.Date class instance and initializes it with the current time from Virtuoso.
cal := java_new_object ('java.util.Date', vector ('L', msec_time()));
creates a new java.util.Date class instance and initializes it with the current time from java VM.
cal := java_new_object ('java.util.Date');