org.sqlite.jdbc
クラス JdbcParameterMetaData

java.lang.Object
  上位を拡張 org.sqlite.jdbc.JdbcParameterMetaData
すべての実装されたインタフェース:
java.sql.ParameterMetaData

public class JdbcParameterMetaData
extends java.lang.Object
implements java.sql.ParameterMetaData


フィールドの概要
 
インタフェース java.sql.ParameterMetaData から継承されたフィールド
parameterModeIn, parameterModeInOut, parameterModeOut, parameterModeUnknown, parameterNoNulls, parameterNullable, parameterNullableUnknown
 
コンストラクタの概要
JdbcParameterMetaData(Statement stmt)
           
 
メソッドの概要
 java.lang.String getParameterClassName(int param)
          Not supporetd yet.
 int getParameterCount()
          invoke org.sqlite.Statement#getParameterCount() method.
 int getParameterMode(int param)
          CallableStatement is not supported yet.
 int getParameterType(int param)
          Not supporetd yet.
 java.lang.String getParameterTypeName(int param)
          Not supporetd yet.
 int getPrecision(int param)
          Not supporetd yet.
 int getScale(int param)
          Not supporetd yet.
 int isNullable(int param)
          CallableStatement is not supported yet.
 boolean isSigned(int param)
          Not supporetd yet.
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

JdbcParameterMetaData

public JdbcParameterMetaData(Statement stmt)
メソッドの詳細

getParameterCount

public int getParameterCount()
                      throws java.sql.SQLException
invoke org.sqlite.Statement#getParameterCount() method.

定義:
インタフェース java.sql.ParameterMetaData 内の getParameterCount
戻り値:
parameter count
例外:
java.sql.SQLException
関連項目:
Statement.getParameterCount()

isNullable

public int isNullable(int param)
               throws java.sql.SQLException
CallableStatement is not supported yet.
It always returns parameterNullable.

定義:
インタフェース java.sql.ParameterMetaData 内の isNullable
パラメータ:
param -
戻り値:
java.sql.ParameterMetaData.parameterNullable
例外:
java.sql.SQLException

isSigned

public boolean isSigned(int param)
                 throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ParameterMetaData 内の isSigned
例外:
java.sql.SQLException

getPrecision

public int getPrecision(int param)
                 throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ParameterMetaData 内の getPrecision
例外:
java.sql.SQLException

getScale

public int getScale(int param)
             throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ParameterMetaData 内の getScale
例外:
java.sql.SQLException

getParameterType

public int getParameterType(int param)
                     throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ParameterMetaData 内の getParameterType
例外:
java.sql.SQLException

getParameterTypeName

public java.lang.String getParameterTypeName(int param)
                                      throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ParameterMetaData 内の getParameterTypeName
例外:
java.sql.SQLException

getParameterClassName

public java.lang.String getParameterClassName(int param)
                                       throws java.sql.SQLException
Not supporetd yet.

定義:
インタフェース java.sql.ParameterMetaData 内の getParameterClassName
例外:
java.sql.SQLException

getParameterMode

public int getParameterMode(int param)
                     throws java.sql.SQLException
CallableStatement is not supported yet.
It always returns parameterModeIn.

定義:
インタフェース java.sql.ParameterMetaData 内の getParameterMode
パラメータ:
param -
戻り値:
java.sql.ParameterMetaData.parameterModeIn
例外:
java.sql.SQLException