Não é possível inserir byte [] no MySQL usando java

A seguir está o código que usei:

byte[] bkey = key.getEncoded();
String query = "INSERT INTO keytable (name, key) VALUES (?,?)";
PreparedStatement pstmt = (PreparedStatement) connection.prepareStatement(query);
pstmt.setString(1, "test");
pstmt.setBytes(2, bkey);
pstmt.execute();

E o seguinte é um erro que recebi:

com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'key) VALUES ('test',_binary'?ʾ??s??u\'?}p?u')' at line 1

Eu tenho o MySQL 5.0.41 emysql-connector-java-5.1.7-bin.jar como biblioteca JDBC. Alguém pode me ajudar aqui? Desde já, obrigado!

questionAnswers(3)

yourAnswerToTheQuestion