org.seasar.doma.jdbc.dialect
クラス MysqlDialect

java.lang.Object
  上位を拡張 org.seasar.doma.jdbc.dialect.StandardDialect
      上位を拡張 org.seasar.doma.jdbc.dialect.MysqlDialect
すべての実装されたインタフェース:
Dialect

public class MysqlDialect
extends StandardDialect

MySQL用の方言です。

作成者:
taedium

入れ子のクラスの概要
static class MysqlDialect.MysqlExpressionFunctions
          MySQL用の ExpressionFunctions です。
static class MysqlDialect.MysqlJdbcMappingVisitor
          MySQL用の JdbcMappingVisitor の実装です。
static class MysqlDialect.MysqlScriptBlockContext
          MySQL用の ScriptBlockContext です。
static class MysqlDialect.MysqlSqlLogFormattingVisitor
          MySQL用の SqlLogFormattingVisitor です。
 
クラス org.seasar.doma.jdbc.dialect.StandardDialect から継承された入れ子のクラス/インタフェース
StandardDialect.StandardExpressionFunctions, StandardDialect.StandardJdbcMappingVisitor, StandardDialect.StandardScriptBlockContext, StandardDialect.StandardSqlLogFormattingVisitor
 
フィールドの概要
protected static Set<Integer> UNIQUE_CONSTRAINT_VIOLATION_ERROR_CODES
          一意制約違反を表すエラーコードのセット
 
クラス org.seasar.doma.jdbc.dialect.StandardDialect から継承されたフィールド
CLOSE_QUOTE, expressionFunctions, jdbcMappingVisitor, OPEN_QUOTE, sqlLogFormattingVisitor, UNIQUE_CONSTRAINT_VIOLATION_STATE_CODES
 
コンストラクタの概要
MysqlDialect()
          インスタンスを構築します。
MysqlDialect(ExpressionFunctions expressionFunctions)
          ExpressionFunctions を指定してインスタンスを構築します。
MysqlDialect(JdbcMappingVisitor jdbcMappingVisitor)
          MysqlDialect.MysqlJdbcMappingVisitor を指定してインスタンスを構築します。
MysqlDialect(JdbcMappingVisitor jdbcMappingVisitor, SqlLogFormattingVisitor sqlLogFormattingVisitor)
          MysqlDialect.MysqlJdbcMappingVisitorSqlLogFormattingVisitor を指定してインスタンスを構築します。
MysqlDialect(JdbcMappingVisitor jdbcMappingVisitor, SqlLogFormattingVisitor sqlLogFormattingVisitor, ExpressionFunctions expressionFunctions)
          MysqlDialect.MysqlJdbcMappingVisitorSqlLogFormattingVisitorExpressionFunctions を指定してインスタンスを構築します。
MysqlDialect(SqlLogFormattingVisitor sqlLogFormattingVisitor)
          SqlLogFormattingVisitor を指定してインスタンスを構築します。
 
メソッドの概要
 ScriptBlockContext createScriptBlockContext()
          スクリプト内のSQLブロックのコンテキストを生成します。
 String getName()
          名前を返します。
 String getScriptBlockDelimiter()
          スクリプト内のSQLブロックの区切り文字を返します。
 boolean isUniqueConstraintViolated(SQLException sqlException)
          一意制約違反かどうかを返します。
 boolean supportsAutoGeneratedKeys()
          Statement.getGeneratedKeys() をサポートしているかどうかを返します。
 boolean supportsIdentity()
          IDENTITYをサポートしているかどうかを返します。
 boolean supportsSelectForUpdate(SelectForUpdateType type, boolean withTargets)
          悲観的排他制御をサポートしているかどうかを返します。
protected  SqlNode toCountCalculatingSqlNode(SqlNode sqlNode)
          集計を計算するSQLノードに変換します。
protected  SqlNode toCountGettingSqlNode(SqlNode sqlNode)
          集計取得用のSQLノードに変換します。
protected  SqlNode toForUpdateSqlNode(SqlNode sqlNode, SelectForUpdateType forUpdateType, int waitSeconds, String... aliases)
          悲観的排他制御用のSQLノードに変換します。
protected  SqlNode toPagingSqlNode(SqlNode sqlNode, long offset, long limit)
          ページング用のSQLノードに変換します。
 
クラス org.seasar.doma.jdbc.dialect.StandardDialect から継承されたメソッド
applyQuote, getCauseSQLException, getErrorCode, getExpressionFunctions, getIdentitySelectSql, getJdbcMappingVisitor, getResultSetType, getRootCause, getSequenceNextValSql, getSqlLogFormattingVisitor, getSQLState, includesIdentityColumn, removeQuote, supportsBatchUpdateResults, supportsResultSetReturningAsOutParameter, supportsSequence, transformSelectSqlNode, transformSelectSqlNodeForGettingCount
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

UNIQUE_CONSTRAINT_VIOLATION_ERROR_CODES

protected static final Set<Integer> UNIQUE_CONSTRAINT_VIOLATION_ERROR_CODES
一意制約違反を表すエラーコードのセット

コンストラクタの詳細

MysqlDialect

public MysqlDialect()
インスタンスを構築します。


MysqlDialect

public MysqlDialect(JdbcMappingVisitor jdbcMappingVisitor)
MysqlDialect.MysqlJdbcMappingVisitor を指定してインスタンスを構築します。

パラメータ:
jdbcMappingVisitor - Wrapper をJDBCの型とマッピングするビジター

MysqlDialect

public MysqlDialect(SqlLogFormattingVisitor sqlLogFormattingVisitor)
SqlLogFormattingVisitor を指定してインスタンスを構築します。

パラメータ:
sqlLogFormattingVisitor - SQLのバインド変数にマッピングされる Wrapper をログ用のフォーマットされた文字列へと変換するビジター

MysqlDialect

public MysqlDialect(ExpressionFunctions expressionFunctions)
ExpressionFunctions を指定してインスタンスを構築します。

パラメータ:
expressionFunctions - SQLのコメント式で利用可能な関数群

MysqlDialect

public MysqlDialect(JdbcMappingVisitor jdbcMappingVisitor,
                    SqlLogFormattingVisitor sqlLogFormattingVisitor)
MysqlDialect.MysqlJdbcMappingVisitorSqlLogFormattingVisitor を指定してインスタンスを構築します。

パラメータ:
jdbcMappingVisitor - Wrapper をJDBCの型とマッピングするビジター
sqlLogFormattingVisitor - SQLのバインド変数にマッピングされる Wrapper をログ用のフォーマットされた文字列へと変換するビジター

MysqlDialect

public MysqlDialect(JdbcMappingVisitor jdbcMappingVisitor,
                    SqlLogFormattingVisitor sqlLogFormattingVisitor,
                    ExpressionFunctions expressionFunctions)
MysqlDialect.MysqlJdbcMappingVisitorSqlLogFormattingVisitorExpressionFunctions を指定してインスタンスを構築します。

パラメータ:
jdbcMappingVisitor - Wrapper をJDBCの型とマッピングするビジター
sqlLogFormattingVisitor - SQLのバインド変数にマッピングされる Wrapper をログ用のフォーマットされた文字列へと変換するビジター
expressionFunctions - SQLのコメント式で利用可能な関数群
メソッドの詳細

getName

public String getName()
インタフェース Dialect の記述:
名前を返します。

定義:
インタフェース Dialect 内の getName
オーバーライド:
クラス StandardDialect 内の getName
戻り値:
名前

isUniqueConstraintViolated

public boolean isUniqueConstraintViolated(SQLException sqlException)
インタフェース Dialect の記述:
一意制約違反かどうかを返します。

定義:
インタフェース Dialect 内の isUniqueConstraintViolated
オーバーライド:
クラス StandardDialect 内の isUniqueConstraintViolated
パラメータ:
sqlException - SQL例外
戻り値:
一意制約違反ならば true

supportsAutoGeneratedKeys

public boolean supportsAutoGeneratedKeys()
インタフェース Dialect の記述:
Statement.getGeneratedKeys() をサポートしているかどうかを返します。

定義:
インタフェース Dialect 内の supportsAutoGeneratedKeys
オーバーライド:
クラス StandardDialect 内の supportsAutoGeneratedKeys
戻り値:
サポートしている場合 true

supportsIdentity

public boolean supportsIdentity()
インタフェース Dialect の記述:
IDENTITYをサポートしているかどうかを返します。

定義:
インタフェース Dialect 内の supportsIdentity
オーバーライド:
クラス StandardDialect 内の supportsIdentity
戻り値:
サポートしている場合 true

supportsSelectForUpdate

public boolean supportsSelectForUpdate(SelectForUpdateType type,
                                       boolean withTargets)
インタフェース Dialect の記述:
悲観的排他制御をサポートしているかどうかを返します。

定義:
インタフェース Dialect 内の supportsSelectForUpdate
オーバーライド:
クラス StandardDialect 内の supportsSelectForUpdate
パラメータ:
type - 悲観的排他制御の種別
withTargets - ロックの対象が指定されている場合 true
戻り値:
サポートしている場合 true

toCountCalculatingSqlNode

protected SqlNode toCountCalculatingSqlNode(SqlNode sqlNode)
クラス StandardDialect の記述:
集計を計算するSQLノードに変換します。

オーバーライド:
クラス StandardDialect 内の toCountCalculatingSqlNode
パラメータ:
sqlNode - SQLノード
戻り値:
変換されたSQLノード

toPagingSqlNode

protected SqlNode toPagingSqlNode(SqlNode sqlNode,
                                  long offset,
                                  long limit)
クラス StandardDialect の記述:
ページング用のSQLノードに変換します。

オーバーライド:
クラス StandardDialect 内の toPagingSqlNode
パラメータ:
sqlNode - SQLノード
offset - オフセット
limit - リミット
戻り値:
変換されたSQLノード

toForUpdateSqlNode

protected SqlNode toForUpdateSqlNode(SqlNode sqlNode,
                                     SelectForUpdateType forUpdateType,
                                     int waitSeconds,
                                     String... aliases)
クラス StandardDialect の記述:
悲観的排他制御用のSQLノードに変換します。

オーバーライド:
クラス StandardDialect 内の toForUpdateSqlNode
パラメータ:
sqlNode - SQLノード
forUpdateType - 悲観的排他制御の種別
waitSeconds - ロック取得の待機時間(秒)
aliases - ロック対象のカラムやテーブルのエイリアス
戻り値:
変換されたSQLノード

toCountGettingSqlNode

protected SqlNode toCountGettingSqlNode(SqlNode sqlNode)
クラス StandardDialect の記述:
集計取得用のSQLノードに変換します。

オーバーライド:
クラス StandardDialect 内の toCountGettingSqlNode
パラメータ:
sqlNode - SQLノード
戻り値:
変換されたSQLノード

getScriptBlockDelimiter

public String getScriptBlockDelimiter()
インタフェース Dialect の記述:
スクリプト内のSQLブロックの区切り文字を返します。

定義:
インタフェース Dialect 内の getScriptBlockDelimiter
オーバーライド:
クラス StandardDialect 内の getScriptBlockDelimiter
戻り値:
スクリプトのブロックの区切り文字

createScriptBlockContext

public ScriptBlockContext createScriptBlockContext()
インタフェース Dialect の記述:
スクリプト内のSQLブロックのコンテキストを生成します。

定義:
インタフェース Dialect 内の createScriptBlockContext
オーバーライド:
クラス StandardDialect 内の createScriptBlockContext
戻り値:
スクリプトのSQLブロックのコンテキスト


Copyright © 2009-2014 The Seasar Foundation. All Rights Reserved.