Inserts xmlNewChild as a child of xmlParent before the existing child
xmlRefChild, or as the last child if xmlRefChild is null, copying the
new Node and its entire subtree from a different Document if necessary.
Returns the specified string with commas inserted every 3 chars counting
from the right -- the traditional formatting of a large number, broken
into ones, thousands, millions, etc.
Connect to the database, execute a SELECT COUNT(*) FROM statement to
decide if a row exists and if not, execute an INSERT statement, then
disconnect, returning true if the row existed, using the default values
for Connection, Logger, ConnectionPool, and DBConfig.
Connect to the database, execute a SELECT COUNT(*) FROM statement to
decide if a row exists and if not, execute an INSERT statement possibly
into a different table, then disconnect, returning true if the row
existed, using the default values for Connection, Logger, ConnectionPool,
and DBConfig.
Connect to the database, execute a SELECT statement to get the primary
key of an existing row, and if it doesn't exist, execute an INSERT
statement possibly into a different table and execute a different SELECT
statement to get a primary key, then disconnect, returning an
InsertOrUpdateResult object, using the default values for Connection,
Logger, ConnectionPool, and DBConfig.
Connect to the database, execute a SELECT statement to get the primary
key of an existing row, and if it doesn't exist, execute an INSERT
statement into the table and re-execute the SELECT statement to get
the primary key, then disconnect, returning an InsertOrUpdateResult
object, using the default values for Connection, Logger, ConnectionPool,
and DBConfig.
Connect to the database, execute a SELECT COUNT(*) FROM statement to
decide if a row exists and based on its existence, execute an INSERT
or UPDATE statement, then disconnect, returning true if the row existed,
using the default values for Connection, Logger, ConnectionPool, and
DBConfig.
Connect to the database, execute a SELECT statement to decide if a row
exists and based on its existence, execute an INSERT or UPDATE statement,
then disconnect, returning an InsertOrUpdateResult object, using the
default values for Connection, Logger, ConnectionPool, and DBConfig.
This abstract class supports the ability for an arbitrary one-parameter Java
method to be invoked via a JSP EL expression, by presenting the method as a
map.