Get the java.sql.Types type to which this database-specific type is mapped : JDBC Data Type « Database SQL JDBC « Java






Get the java.sql.Types type to which this database-specific type is mapped

  

import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.DriverManager;
import java.sql.ResultSet;

public class Main {
  public static void main(String[] argv) throws Exception {
    String driverName = "com.jnetdirect.jsql.JSQLDriver";
    Class.forName(driverName);

    String serverName = "127.0.0.1";
    String portNumber = "1433";
    String mydatabase = serverName + ":" + portNumber;
    String url = "jdbc:JSQLConnect://" + mydatabase;
    String username = "username";
    String password = "password";

    Connection connection = DriverManager.getConnection(url, username, password);
    DatabaseMetaData dbmd = connection.getMetaData();
    ResultSet resultSet = dbmd.getTypeInfo();

    while (resultSet.next()) {
      String typeName = resultSet.getString("TYPE_NAME");

      short dataType = resultSet.getShort("DATA_TYPE");
    }
  }
}

   
    
  








Related examples in the same category

1.Enumeration Type: JDBC
2.Save Object JDBC
3.converting a java.sql.Types integer value into a printable name
4.Getting the Name of a JDBC Type
5.Get the database-specific type name
6.Retrieve type info from the result set
7.Listing Available SQL data Types Used by a Database
8.uses reflection to get all the field names from java.sql.Types.
9.Determining the Type of a Character: determine the properties of a character for the entire Unicode character set.