JdbcTypeNameToDbTypeName() static private method

static private JdbcTypeNameToDbTypeName ( string jdbcTypeName ) : String
jdbcTypeName string
return String
示例#1
0
        public override String GetDataTypeName(int columnIndex)
        {
            try {
                string jdbcTypeName = Results.getMetaData().getColumnTypeName(columnIndex + 1);

                return(SqlConvert.JdbcTypeNameToDbTypeName(jdbcTypeName));
            }
            catch (SQLException e) {
                throw CreateException(e);
            }
        }