UltraLite User's Guide
Developing UltraLite Java Applications
UltraLite Java development notes
If you create your JDBC program as an applet, your application can only synchronize with the machine from which the applet is loaded, which is usually the same as the HTML.
The following is a sample HTML page used to create an UltraLite applet:
<html> <head> </head> <body bgcolor="FFFF00"> <applet code="CustDbApplet.class" width=440 height=188 archive="custdb.zip,ulrt.jar" > </applet> </body> </html>
The applet tag specifies the following:
The class that the applet starts:
code="CustDbApplet.class"
The size of the window in the web browser to display the applet to.
width=440 height=188
The zip files that are necessary in order to run the applet.
archive="custdb.zip,ulrt.jar"
In this case, the custdb.zip file and the UltraLite runtime zip file are necessary in order to run the UltraLite CustDB sample application.