Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.mysql.jdbc.SingleByteCharsetConverter

Uses of SingleByteCharsetConverter in com.mysql.jdbc
 

Fields in com.mysql.jdbc declared as SingleByteCharsetConverter
private  SingleByteCharsetConverter UpdatableResultSet.charConverter
           
protected  SingleByteCharsetConverter Statement.charConverter
          The character converter to use (if available)
 

Methods in com.mysql.jdbc that return SingleByteCharsetConverter
private  SingleByteCharsetConverter UpdatableResultSet.getCharConverter()
           
static SingleByteCharsetConverter SingleByteCharsetConverter.getInstance(java.lang.String encodingName)
          Get a converter for the given encoding name
static SingleByteCharsetConverter SingleByteCharsetConverter.initCharset(java.lang.String javaEncodingName)
          Initialize the shared instance of a converter for the given character encoding.
(package private)  SingleByteCharsetConverter Connection.getCharsetConverter(java.lang.String javaEncodingName)
          Returns the locally mapped instance of a charset converter (to avoid overhead of static synchronization).
 

Methods in com.mysql.jdbc with parameters of type SingleByteCharsetConverter
static byte[] StringUtils.getBytes(java.lang.String s, SingleByteCharsetConverter converter, java.lang.String encoding, java.lang.String serverEncoding, boolean parserKnowsUnicode)
          Returns the byte[] representation of the given string (re)using the given charset converter, and the given encoding.
static byte[] StringUtils.getBytes(java.lang.String s, SingleByteCharsetConverter converter, java.lang.String encoding, java.lang.String serverEncoding, int offset, int length, boolean parserKnowsUnicode)
          DOCUMENT ME!
(package private)  void Buffer.writeStringNoNull(java.lang.String s, java.lang.String encoding, java.lang.String serverEncoding, SingleByteCharsetConverter converter, boolean parserKnowsUnicode)
           
 

Constructors in com.mysql.jdbc with parameters of type SingleByteCharsetConverter
PreparedStatement.ParseInfo(java.lang.String sql, Connection conn, java.sql.DatabaseMetaData dbmd, java.lang.String encoding, SingleByteCharsetConverter converter)