Creating an instance of the JdbcSource applet
The following HTML code shows how to do create an instance of the JdbcSource applet in your Parameterized Query application.

<APPLET NAME="shoeQuery" CODEBASE="..\..\.." CODE="lotus.jdbc.JdbcSource" WIDTH=1 HEIGHT=1>

	<PARAM NAME="database" VALUE="jdbc:dbaw://dpp:8889/Sybase_SQLANY/PQueryData/PQueryData">
	<PARAM NAME="user" VALUE="dba">	
	<PARAM NAME="password" VALUE="sql>
	<PARAM NAME="allowUI" VALUE="false">
	<PARAM NAME="autoConnect" VALUE="true">
	<PARAM NAME="autoExecute" VALUE="false">
	<PARAM NAME="retrievals" VALUE="shoeQueryResult">
	<PARAM NAME="shoeQueryResult" VALUE="select Price,Quantity,Description from SalesData where State='%state%'">
	<PARAM NAME="shoeQueryResult_resultStyle" VALUE="Data">

</APPLET>

Within the APPLET tag, the various attributes do the following:

Each PARAM tag for the JdbcSource applet lets you set specific applet configuration options. The option is specified by the NAME attribute and the option value is specified with the VALUE attribute.