Method | Description |
public void <init>(
biz.hammurapi.sql.SQLProcessor processor
)
| Constructor |
public int deleteSharedText(
)
throws java.sql.SQLException | Executes update and returns number of affected rows. Deletes all records from PUBLIC.SHARED_TEXT |
public int deleteSharedText(
int Id
)
throws java.sql.SQLException | Executes update and returns number of affected rows. Deletes by primary key from PUBLIC.SHARED_TEXT |
public int deleteSharedTextHashCodeEQ(
Integer HashCode
)
throws java.sql.SQLException | Executes update and returns number of affected rows. Deletes row(s) with equal index value(s): HASH_CODE |
public java.util.Collection getSharedText(
)
| Executes query, returns database backed collection with elements of type biz.hammurapi.persistence.SharedText. Selects all rows from PUBLIC.SHARED_TEXT |
public java.util.Collection getSharedText(
biz.hammurapi.convert.Converter converter
)
| Executes query, returns database backed collection with elements of type biz.hammurapi.persistence.SharedText. If converter is not null then elements will be results of conversion.Selects all rows from PUBLIC.SHARED_TEXT |
public java.util.Collection getSharedText(
Class targetClass
)
| Executes query, returns database backed collection with elements of type biz.hammurapi.persistence.SharedText. If targetClass is not null then elements will be of targetClass typeSelects all rows from PUBLIC.SHARED_TEXT |
public java.util.Collection getSharedText(
java.util.Collection receiver
)
throws java.sql.SQLException | Executes query, populates collection with elements of type biz.hammurapi.persistence.SharedText and returns populated collection. Selects all rows from PUBLIC.SHARED_TEXT |
public java.util.Collection getSharedText(
java.util.Collection receiver, biz.hammurapi.convert.Converter converter
)
throws java.sql.SQLException | Executes query, populates collection with elements of type biz.hammurapi.persistence.SharedText and returns populated collection. If converter is not null then elements will be results of conversion. Selects all rows from PUBLIC.SHARED_TEXT |
public java.util.Collection getSharedText(
java.util.Collection receiver, Class targetClass
)
throws java.sql.SQLException | Executes query, populates collection with elements of type biz.hammurapi.persistence.SharedText and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects all rows from PUBLIC.SHARED_TEXT |
public SharedText getSharedText(
int Id
)
throws java.sql.SQLException | Executes query and returns single object. Selects by primary key from PUBLIC.SHARED_TEXT |
public SharedText getSharedText(
int Id, Class targetClass
)
throws java.sql.SQLException | Executes query and returns single object of target class type. Target class must be return type compatible. Selects by primary key from PUBLIC.SHARED_TEXT |
public java.util.Collection getSharedTextHashCodeEQ(
Integer HashCode
)
| Executes query, returns database backed collection with elements of type biz.hammurapi.persistence.SharedText. Selects row(s) with equal index value(s): HASH_CODE |
public java.util.Collection getSharedTextHashCodeEQ(
Integer HashCode, biz.hammurapi.convert.Converter converter
)
| Executes query, returns database backed collection with elements of type biz.hammurapi.persistence.SharedText. If converter is not null then elements will be results of conversion.Selects row(s) with equal index value(s): HASH_CODE |
public java.util.Collection getSharedTextHashCodeEQ(
Integer HashCode, Class targetClass
)
| Executes query, returns database backed collection with elements of type biz.hammurapi.persistence.SharedText. If targetClass is not null then elements will be of targetClass typeSelects row(s) with equal index value(s): HASH_CODE |
public java.util.Collection getSharedTextHashCodeEQ(
Integer HashCode, java.util.Collection receiver
)
throws java.sql.SQLException | Executes query, populates collection with elements of type biz.hammurapi.persistence.SharedText and returns populated collection. Selects row(s) with equal index value(s): HASH_CODE |
public java.util.Collection getSharedTextHashCodeEQ(
Integer HashCode, java.util.Collection receiver, biz.hammurapi.convert.Converter converter
)
throws java.sql.SQLException | Executes query, populates collection with elements of type biz.hammurapi.persistence.SharedText and returns populated collection. If converter is not null then elements will be results of conversion. Selects row(s) with equal index value(s): HASH_CODE |
public java.util.Collection getSharedTextHashCodeEQ(
Integer HashCode, java.util.Collection receiver, Class targetClass
)
throws java.sql.SQLException | Executes query, populates collection with elements of type biz.hammurapi.persistence.SharedText and returns populated collection. If targetClass is not null then elements will be of targetClass type. Selects row(s) with equal index value(s): HASH_CODE |
public java.util.Collection getTextChunks(
int p1, int p2
)
| Executes query, returns database backed collection with elements of type of the first column. |
public java.util.Collection getTextChunks(
int p1, int p2, biz.hammurapi.convert.Converter converter
)
| Executes query, returns database backed collection with elements of type of the first column. If converter is not null then it converts elements. |
public java.util.Collection getTextChunks(
int p1, int p2, Class targetClass
)
| Executes query, returns database backed collection with elements of type of the first column. If target class is not null then elements are instances of target class created from the first column values. |
public java.util.Collection getTextChunks(
int p1, int p2, java.util.Collection receiver
)
throws java.sql.SQLException | Executes query, populates collection with values from the first column and returns the collection. |
public java.util.Collection getTextChunks(
int p1, int p2, java.util.Collection receiver, biz.hammurapi.convert.Converter converter
)
throws java.sql.SQLException | Executes query, populates collection with values from the first column and returns the collection. Elements get converted by the converter if it is not null. |
public java.util.Collection getTextChunks(
int p1, int p2, java.util.Collection receiver, Class targetClass
)
throws java.sql.SQLException | Executes query, populates collection with values from the first column and returns the collection. If target class is not null instances of target class are instantiated from first column values |
public int insertSharedText(
int Id, Integer HashCode, String TextChunk, Integer TextHead, int ChunkPosition
)
throws java.sql.SQLException | Executes update and returns number of affected rows. Inserts new record into PUBLIC.SHARED_TEXT |
public int insertSharedText(
SharedText rowInterface
)
throws java.sql.SQLException | Executes update and returns number of affected rows. Inserts new record into PUBLIC.SHARED_TEXT |
public void processSharedText(
biz.hammurapi.sql.RowProcessor processor
)
throws java.sql.SQLException | Executes query, iterates over rows and invokes methods of RowProcessor for each row. Selects all rows from PUBLIC.SHARED_TEXT |
public void processSharedTextHashCodeEQ(
Integer HashCode, biz.hammurapi.sql.RowProcessor processor
)
throws java.sql.SQLException | Executes query, iterates over rows and invokes methods of RowProcessor for each row. Selects row(s) with equal index value(s): HASH_CODE |
public void processTextChunks(
int p1, int p2, biz.hammurapi.sql.RowProcessor processor
)
throws java.sql.SQLException | Executes query, iterates over rows and invokes methods of RowProcessor for each row. |
public int updateSharedText(
SharedText rowInterface
)
throws java.sql.SQLException | Executes update and returns number of affected rows. Updates record with by primary key in PUBLIC.SHARED_TEXT |