Java ResultSet.getBytes(String columnLabel)
Syntax
ResultSet.getBytes(String columnLabel) has the following syntax.
byte[] getBytes(String columnLabel) throws SQLException
Example
In the following code shows how to use ResultSet.getBytes(String columnLabel) method.
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
/*from w ww. j av a2 s . c om*/
public class Main {
public static void main(String[] args) throws Exception {
Connection conn = getConnection();
Statement stmt = conn.createStatement();
stmt.executeUpdate("create table survey (id int, name BINARY );");
String sql = "INSERT INTO survey (name) VALUES(?)";
PreparedStatement pstmt = conn.prepareStatement(sql);
String myData = "some string data ...";
byte[] binaryData = myData.getBytes();
pstmt.setBytes(1, binaryData);
pstmt.executeUpdate();
ResultSet rs = stmt.executeQuery("SELECT * FROM survey");
while (rs.next()) {
System.out.print(rs.getBytes("name").length + " ");
}
rs.close();
stmt.close();
conn.close();
}
private static Connection getConnection() throws Exception {
Class.forName("org.hsqldb.jdbcDriver");
String url = "jdbc:hsqldb:mem:data/tutorial";
return DriverManager.getConnection(url, "sa", "");
}
}