|
||||||||||
| 前 次 | フレームあり フレームなし | |||||||||
| Selecter を使用しているパッケージ | |
|---|---|
| nga.sql | SQL文だけで O-R マッピングを行なう超シンプルなパーシステンスライブラリ。 |
| nga.sql での Selecter の使用 |
|---|
| Selecter を返す nga.sql のメソッド | ||
|---|---|---|
Selecter<R> |
Selecter.add(String text)
現在の SQL 文の末尾に文字列を追加する。 |
|
Selecter<R> |
Selecter.add(String text,
String connector)
現在の SQL 文の末尾に connector 引数で指定された結合文字列と text 引数で指定された文字列を追加する。 |
|
Selecter<R> |
Selecter.add(String text,
String connector,
String ifEmpty)
現在の SQL 文の末尾に connector 引数で指定された結合文字列と text 引数で指定された文字列を追加する。 |
|
Selecter<R> |
Selecter.and(String text)
現在の SQL 文の末尾に「"AND " + 指定した文字列」を追加する。 |
|
Selecter<R> |
Selecter.and(String text,
String ifEmpty)
現在の SQL 文の末尾に「"AND " + 指定した文字列」を追加する。 |
|
static
|
SQL.createSelecter(Class<? extends R> resultClass,
String sql)
Select 文用 SQL オブジェクトを作成する。 |
|
static
|
SQL.createSelecter(Class<? extends R> resultClass,
String sql,
Object... parameterObject)
Select 文用 SQL オブジェクトを作成する。 |
|
static
|
SQL.createSelecter(Connection connection,
Class<? extends R> resultClass,
String sql)
Select 文用 SQL オブジェクトを作成する。 |
|
static
|
SQL.createSelecter(Connection connection,
Class<? extends R> resultClass,
String sql,
Object... parameterObject)
Select 文用 SQL オブジェクトを作成する。 |
|
static
|
XSQL.createSelecter(Connection connection,
String sqlId)
Select 文用 SQL オブジェクトを作成する。 |
|
static
|
XSQL.createSelecter(Connection connection,
String sqlId,
Object parameterObject)
Select 文用 SQL オブジェクトを作成する。 |
|
static
|
XSQL.createSelecter(String sqlId)
Select 文用 SQL オブジェクトを作成する。 |
|
static
|
XSQL.createSelecter(String sqlId,
Object parameterObject)
Select 文用 SQL オブジェクトを作成する。 |
|
Selecter<R> |
Selecter.or(String text)
現在の SQL 文の末尾に「"OR " + 指定した文字列」を追加する。 |
|
Selecter<R> |
Selecter.or(String text,
String ifEmpty)
現在の SQL 文の末尾に「"OR " + 指定した文字列」を追加する。 |
|
|
||||||||||
| 前 次 | フレームあり フレームなし | |||||||||