%-- Copyright 2001 Sun Microsystems, Inc. All Rights Reserved. This software is the proprietary information of Sun Microsystems, Inc. Use is subject to license terms. --%> <%@ page import="java.util.*" %> <%@ page import="MyLocales" %> <%@ page contentType="text/html; charset=ISO-8859-5" %>
");
props.setProperties(rb); // Needed because reLoadProperties not work here
props.setHtml(true); props.setOut(out);
String env = props.getSystem();
out.println("env = " + env + "
");
try {
out.println("Opening DB..."); props.openDB(); out.println("...done.");
out.println("Doing query...");
java.sql.ResultSet rs = props.doQuery("SELECT * FROM Msgs");
out.println("...done, result set = " + rs + "
");
while (rs.next()) { //Move to first/next row of SQL-query result
out.println("MsgID: " + rs.getString("MsgID")
+ " // Message: " + rs.getString("Message") + "
");
}
} catch (Exception ex) {
out.println("