|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DBConnection | |
velosurf.context | Contains all classes that can be accessed from inside a Velocity template. |
velosurf.model | Classes linked to the data model : entities, attributes and actions |
velosurf.sql | Contains all core classes dealing with the database itself. |
velosurf.tools | Contains the velocity-tools version of the Velosurf tool, plus an http query parameter parser tool. |
Uses of DBConnection in velosurf.context |
Fields in velosurf.context declared as DBConnection | |
protected DBConnection |
DBReference.mDB
the wrapped database connection |
protected DBConnection |
Instance.mDB
the main database connection |
Methods in velosurf.context with parameters of type DBConnection | |
protected void |
DBReference.init(DBConnection inDB)
protected initialization method |
Constructors in velosurf.context with parameters of type DBConnection | |
DBReference(DBConnection inDB)
Constructs a new reference |
Uses of DBConnection in velosurf.model |
Fields in velosurf.model declared as DBConnection | |
protected DBConnection |
Attribute.mDB
database connection |
protected DBConnection |
Action.mDB
the satabase connection |
protected DBConnection |
Entity.mDB
the database connection |
Methods in velosurf.model that return DBConnection | |
DBConnection |
Attribute.getDB()
gets the database connection |
DBConnection |
Action.getDB()
get the database connection |
DBConnection |
Entity.getDB()
get the database connection |
Constructors in velosurf.model with parameters of type DBConnection | |
Attribute(DBConnection inDB,
java.lang.String inDefinition)
Deprecated. builds a new Attribute |
|
Action(DBConnection inDB,
org.jdom.Element inJDOMAction)
Constructor |
|
Transaction(DBConnection inDB,
org.jdom.Element inJDOMAction)
Builds a new transaction |
|
Entity(DBConnection inDB,
java.lang.String inName,
boolean inAccess,
int inCachingMethod)
Constructor reserved for the framework |
Uses of DBConnection in velosurf.sql |
Fields in velosurf.sql declared as DBConnection | |
protected DBConnection |
PreparedStatementPool.mDBConnection
database connection |
protected DBConnection |
StatementPool.mDBConnection
database connection |
protected DBConnection |
PooledStatement.mDBConnection
database connection |
protected DBConnection |
PooledPreparedStatement.mDBConnection
the database connection |
Methods in velosurf.sql that return DBConnection | |
static DBConnection |
DBConnection.getInstance(java.lang.String inUser,
java.lang.String inPassword,
java.lang.String inUrl,
java.lang.String inDriver)
get an instance to a new connection (meant to have a cache params->connections, not implemented, always return a new connection : similar to the equivalent constructor) |
static DBConnection |
DBConnection.getInstance(java.lang.String inConfigFilename)
get an instance to a new connection |
static DBConnection |
DBConnection.getInstance(java.io.InputStream inConfig)
get a new connection |
Methods in velosurf.sql with parameters of type DBConnection | |
static long |
SqlUtil.getLastInsertId(DBConnection connection,
java.sql.Statement statement)
|
Constructors in velosurf.sql with parameters of type DBConnection | |
PreparedStatementPool(DBConnection inDBConnection)
builds a new pool |
|
StatementPool(DBConnection inDBConnection)
builds a new pool |
|
PooledStatement(DBConnection inDBConnection,
java.sql.Statement inStatement)
builds a new PooledStatement |
|
PooledPreparedStatement(DBConnection inDBConnection,
java.sql.PreparedStatement inPreparedStatement)
builds a new PooledPreparedStatement |
Uses of DBConnection in velosurf.tools |
Fields in velosurf.tools declared as DBConnection | |
protected static DBConnection |
VelosurfTool.sDB
database connection |
Methods in velosurf.tools that return DBConnection | |
static DBConnection |
VelosurfTool.initDB(javax.servlet.ServletContext inServletContext)
static initialization method |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |