Package oracle.sql

Examples of oracle.sql.CHAR


      // make sure if the string is larger than one character, only take the first character
      if (s.length() > 1)
        s = new String((new Character(s.charAt(0))).toString());
      try {
      //BUG: make sure I am correct
      return new CHAR(s, CharacterSet.make(CharacterSet.ISO_LATIN_1_CHARSET));
    } catch (SQLException e) {
      e.printStackTrace();
    }
    return null;
    }
View Full Code Here

TOP

Related Classes of oracle.sql.CHAR

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.