类 JdbcFieldTypeUtils
- java.lang.Object
-
- org.apache.seatunnel.connectors.seatunnel.jdbc.utils.JdbcFieldTypeUtils
-
public final class JdbcFieldTypeUtils extends Object
-
-
方法概要
所有方法 静态方法 具体方法 修饰符和类型 方法 说明 static BigDecimalgetBigDecimal(ResultSet resultSet, int columnIndex)static BooleangetBoolean(ResultSet resultSet, int columnIndex)static BytegetByte(ResultSet resultSet, int columnIndex)static byte[]getBytes(ResultSet resultSet, int columnIndex)static DategetDate(ResultSet resultSet, int columnIndex)static DoublegetDouble(ResultSet resultSet, int columnIndex)static FloatgetFloat(ResultSet resultSet, int columnIndex)static IntegergetInt(ResultSet resultSet, int columnIndex)static LonggetLong(ResultSet resultSet, int columnIndex)static ShortgetShort(ResultSet resultSet, int columnIndex)static StringgetString(ResultSet resultSet, int columnIndex)static TimegetTime(ResultSet resultSet, int columnIndex)static TimestampgetTimestamp(ResultSet resultSet, int columnIndex)
-
-
-
方法详细资料
-
getBoolean
public static Boolean getBoolean(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getByte
public static Byte getByte(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getShort
public static Short getShort(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getInt
public static Integer getInt(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getLong
public static Long getLong(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getFloat
public static Float getFloat(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getDouble
public static Double getDouble(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getString
public static String getString(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getBigDecimal
public static BigDecimal getBigDecimal(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getDate
public static Date getDate(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getTime
public static Time getTime(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getTimestamp
public static Timestamp getTimestamp(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
getBytes
public static byte[] getBytes(ResultSet resultSet, int columnIndex) throws SQLException
- 抛出:
SQLException
-
-