Collection Contents Previous Next PDF

UltraLite Static Java User's Guide

Data Access Using the Static Java API

UltraLite Static Java development notes

Creating UltraLite Static Java applets


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.

Including an applet in an HTML page 

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:


Collection Contents Previous Next PDF