|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Column | |
net.sf.jaxme.js.pattern | The pattern package This package contains a set of design patterns implemented with the JaxMe JavaSource generator framework. |
net.sf.jaxme.sqls | |
net.sf.jaxme.sqls.db2 | DB2 support for the SQL generator This package contains some classes and interfaces enhancing the SQL generator with DB2 specific features. |
net.sf.jaxme.sqls.hsqldb | HsqlDb support for the SQL generator This package contains some classes and interfaces enhancing the SQL generator with HsqlDb specific features. |
net.sf.jaxme.sqls.impl |
Uses of Column in net.sf.jaxme.js.pattern |
Methods in net.sf.jaxme.js.pattern with parameters of type Column | |
protected void |
VersionGenerator.setResultSetValue(JavaMethod pMethod,
Column pColumn,
DirectAccessible pResultSet,
int pColumnNum,
java.lang.Object pTarget)
Generates code for reading a ResultSet's column. |
protected void |
VersionGenerator.setPreparedStatementValue(JavaMethod pMethod,
Column pColumn,
java.lang.Object pStmt,
java.lang.Object pParamNum,
java.lang.Object pValue)
Generates code for setting a PreparedStatement's parameter. |
Uses of Column in net.sf.jaxme.sqls |
Subinterfaces of Column in net.sf.jaxme.sqls | |
interface |
BinaryColumn
Interface of a column with datatype Column.Type.BINARY
or Column.Type.VARBINARY . |
interface |
StringColumn
Interface of a column with datatype Column.Type.CHAR
or Column.Type.VARCHAR . |
Methods in net.sf.jaxme.sqls that return Column | |
Column |
Table.newColumn(Column.Name name,
Column.Type pType)
Creates a new column. |
Column |
Table.newColumn(java.lang.String name,
Column.Type pType)
Creates a new column. |
Column |
Table.getColumn(Column.Name name)
Returns the column with the given name or null, if no such column exists. |
Column |
Table.getColumn(java.lang.String name)
Returns the column with the given name or null, if no such column exists. |
Column |
ForeignKey.ColumnLink.getLocalColumn()
Returns the column referencing a column in the referenced table. |
Column |
ForeignKey.ColumnLink.getReferencedColumn()
Returns the column being referenced in the referenced table. |
Column |
ColumnReference.getColumn()
Returns the referenced Column . |
Methods in net.sf.jaxme.sqls with parameters of type Column | |
ColumnReference |
TableReference.newColumnReference(Column pColumn)
Returns a reference to the given column in the table. |
void |
SetStatement.addSetNull(Column pColumn)
Adds a SET clause setting the given column to NULL. |
void |
SetStatement.addSet(Column pColumn)
Adds a SET clause setting the given column to a value given by a placeholder. |
void |
SetStatement.addSet(Column pColumn,
byte pValue)
Adds a SET clause setting the given column to the value pValue |
void |
SetStatement.addSet(Column pColumn,
short pValue)
Adds a SET clause setting the given column to the value pValue |
void |
SetStatement.addSet(Column pColumn,
int pValue)
Adds a SET clause setting the given column to the value pValue |
void |
SetStatement.addSet(Column pColumn,
long pValue)
Adds a SET clause setting the given column to the value pValue |
void |
SetStatement.addSet(Column pColumn,
float pValue)
Adds a SET clause setting the given column to the value pValue |
void |
SetStatement.addSet(Column pColumn,
boolean pValue)
Adds a SET clause setting the given column to the value TRUE or FALSE, depending on pValue |
void |
SetStatement.addSet(Column pColumn,
java.lang.String pValue)
Adds a SET clause setting the given column to the value pValue |
void |
SetStatement.addSetDateTime(Column pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the datetime value pValue |
void |
SetStatement.addSetTime(Column pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the time value pValue |
void |
SetStatement.addSetDate(Column pColumn,
java.util.Calendar pValue)
Adds a SET clause setting the given column to the date value pValue |
void |
Index.addColumn(Column pColumn)
Adds a column to the index. |
void |
ForeignKey.addColumnLink(Column pColumn,
Column pReferencedColumn)
Adds a reference between the given columns. |
Uses of Column in net.sf.jaxme.sqls.db2 |
Subinterfaces of Column in net.sf.jaxme.sqls.db2 | |
interface |
DB2Column
Interface of a column in a DB2 database. |
Classes in net.sf.jaxme.sqls.db2 that implement Column | |
class |
DB2ColumnImpl
Default implementation of a column in a DB2 database. |
Methods in net.sf.jaxme.sqls.db2 that return Column | |
Column |
DB2SQLFactoryImpl.newColumn(Table pTable,
Column.Name pName,
Column.Type pType)
|
Methods in net.sf.jaxme.sqls.db2 with parameters of type Column | |
protected java.lang.String |
DB2SQLGeneratorImpl.getCreate(Column pColumn)
|
Uses of Column in net.sf.jaxme.sqls.hsqldb |
Subinterfaces of Column in net.sf.jaxme.sqls.hsqldb | |
interface |
HsqlDbColumn
Interface of a column in a HsqlDb database. |
Classes in net.sf.jaxme.sqls.hsqldb that implement Column | |
class |
HsqlDbColumnImpl
Default implementation of a column in a HsqlDb database. |
Methods in net.sf.jaxme.sqls.hsqldb that return Column | |
Column |
HsqlDbSQLFactoryImpl.newColumn(Table pTable,
Column.Name pName,
Column.Type pType)
|
Uses of Column in net.sf.jaxme.sqls.impl |
Classes in net.sf.jaxme.sqls.impl that implement Column | |
class |
ColumnImpl
Implementation of a column. |
Methods in net.sf.jaxme.sqls.impl that return Column | |
Column |
TableImpl.newColumn(java.lang.String pName,
Column.Type pType)
|
Column |
TableImpl.newColumn(Column.Name pName,
Column.Type pType)
|
Column |
TableImpl.getColumn(Column.Name pName)
|
Column |
TableImpl.getColumn(java.lang.String pName)
|
protected Column |
SQLFactoryImpl.newColumnImpl(Table pTable,
Column.Name pName,
Column.Type pType)
|
Column |
ForeignKeyImpl.ColumnReferenceImpl.getLocalColumn()
|
Column |
ForeignKeyImpl.ColumnReferenceImpl.getReferencedColumn()
|
Column |
ColumnReferenceImpl.getColumn()
|
Methods in net.sf.jaxme.sqls.impl with parameters of type Column | |
ColumnReference |
TableReferenceImpl.newColumnReference(Column pColumn)
|
protected java.lang.String |
SQLGeneratorImpl.getCreate(Column pColumn)
|
void |
SetStatementImpl.addSet(Column pColumn,
Value pValue)
|
void |
SetStatementImpl.addSetNull(Column pColumn)
|
void |
SetStatementImpl.addSet(Column pColumn)
|
void |
SetStatementImpl.addSet(Column pColumn,
byte pValue)
|
void |
SetStatementImpl.addSet(Column pColumn,
short pValue)
|
void |
SetStatementImpl.addSet(Column pColumn,
int pValue)
|
void |
SetStatementImpl.addSet(Column pColumn,
long pValue)
|
void |
SetStatementImpl.addSet(Column pColumn,
float pValue)
|
void |
SetStatementImpl.addSet(Column pColumn,
boolean pValue)
|
void |
SetStatementImpl.addSet(Column pColumn,
java.lang.String pValue)
|
void |
SetStatementImpl.addSetDateTime(Column pColumn,
java.util.Calendar pValue)
|
void |
SetStatementImpl.addSetTime(Column pColumn,
java.util.Calendar pValue)
|
void |
SetStatementImpl.addSetDate(Column pColumn,
java.util.Calendar pValue)
|
void |
IndexImpl.addColumn(Column pColumn)
|
void |
ForeignKeyImpl.addColumnLink(Column pColumn,
Column pReferencedColumn)
|
Constructors in net.sf.jaxme.sqls.impl with parameters of type Column | |
ForeignKeyImpl.ColumnReferenceImpl(Column pLocalColumn,
Column pReferencedColumn)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |