Uses of Class
standup.sql.STANDUPSQLException

Packages that use STANDUPSQLException
standup.joke This package provides joke generation functionality and all its related data structures. 
standup.sql Provides classes and interfaces that handle access to the STANDUP lexical database, currently implemented as a relational database using PostgreSQL server. 
 

Uses of STANDUPSQLException in standup.joke
 

Constructors in standup.joke that throw STANDUPSQLException
BackendJokeSetSQL()
          Constructor that uses either /standup/resources/xml/jokecache.jokes or /standup/resources/xml/jokecache_corseford.jokes as the joke cache, depending on the value of CommandLineArguments#KEY_OLDCACHE.
BackendSQL()
          Default constructor
 

Uses of STANDUPSQLException in standup.sql
 

Methods in standup.sql that throw STANDUPSQLException
static String SQLUtils.createTemporaryLexemeIDSetTable(LexemeSet ls)
          Creates a temporary table in the SQL database, containing a single 'id' column, and populated by all the Lexeme IDs found in the given LexemeSet.
static void SQLUtils.deleteTable(String tableName)
          This function deletes the SQL table with the given table name.
static int SQLUtils.getTableCount(String tableName)
          This returns the number of rows contained in the SQL table with the given table name.
static void SQLUtils.initialize()
          This initializes the SQL database connection using the arguments supplied by CommandLineArguments.
private static void SQLUtils.initialize(String[] params)
          A method of initializing the database connection by providing it with an array of Strings that contains the required parameters.
static void SQLUtils.initialize(URL configURL)
          This initializes the SQL database connection using the arguments supplied in the given URL.