Java SQL Type getIntTypeString(Connection conn)

Here you can find the source of getIntTypeString(Connection conn)

Description

get Int Type String

License

Open Source License

Declaration

public static String getIntTypeString(Connection conn) 

Method Source Code

//package com.java2s;
/*/*from  ww  w.  j a v  a 2 s .  c o  m*/
Weave (Web-based Analysis and Visualization Environment)
Copyright (C) 2008-2011 University of Massachusetts Lowell
    
This file is a part of Weave.
    
Weave is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License, Version 3,
as published by the Free Software Foundation.
    
Weave is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License
along with Weave.  If not, see <http://www.gnu.org/licenses/>.
*/

import java.sql.Connection;

public class Main {
    public static String getIntTypeString(Connection conn) {
        return "INT";
    }
}

Related

  1. getDoubleTypeString(Connection conn)
  2. getDoubleTypeString(Connection conn)
  3. getExpressionChoices(int type)
  4. getFormatTypeAsString(int fieldType)
  5. getInsertarEmpresa()
  6. getIntValue(String typeName)
  7. getJavaType(int dataType, int columnSize, int decimalDegit)
  8. getJavaType(int jdbcType)
  9. getJavaType(int sqlType)