Java SQL Type getArgTypes()

Here you can find the source of getArgTypes()

Description

get Arg Types

License

Apache License

Declaration

public static int[] getArgTypes() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.sql.Types;
import java.util.Arrays;

public class Main {
    private static final int[] ARG_TYPES = new int[] { Types.VARCHAR, Types.VARCHAR };

    public static int[] getArgTypes() {
        return Arrays.copyOf(ARG_TYPES, ARG_TYPES.length);
    }/*from  www  .  j  a  v a  2  s  . c  o  m*/
}

Related

  1. dumpTypes(Connection pConnection)
  2. extractConstant(String typeName)
  3. fillLogParams(String sql, Map logParams)
  4. findMethod(Class returnType, Class parameterType)
  5. getAntipodeForFunction(String base, int destType)
  6. getAsciiStream(Object value, int columnType)
  7. getBinary(Object value, int columnType)
  8. getBinaryStream(Object value, int columnType)
  9. getBIRTDataType(Integer datatype)