I have a nice MySQL table like this:
CREATE TABLE IF NOT EXISTS BLOBTest(Id INT PRIMARY KEY AUTO_INCREMENT,
Data BLOB);
And inside it I have the following:
SELECT HEX(Data) from BLOBTest;
+----------------------------------+
| HEX(Data) |
+----------------------------------+
| E764DF04463B55E9E2305934266227A1 |
+----------------------------------+
Translated, I have a table with 1 row and two columns (Id and Data). This row holds byte[] data, the byte[] array stored is the following: [-25, 100, -33, 4, 70, 59, 85, -23, -30, 48, 89, 52, 38, 98, 39, -95]
How do I make a query to get the entire how? At first I tried:
SELECT * FROM BLOBTest WHERE Data='[-25, 100, -33, 4, 70, 59, 85, -23, -30, 48, 89, 52, 38, 98, 39, -95]';
However this approach does not work at all, it always returns an empty set. I need to get all the information of that row and all I have is the byte[] value. How do I do it?
Thanks for any help if possible plz.
EDIT:
Here is the code of the java app and what it does.
public Map<Integer, String> queryAuthor(String author) throws Exception{
//encrypts the name of the author
byte[] cipheredName = cryptManager.encrypt(keyBytes,
author.getBytes());
//queries db for encrypted name
pst = con.prepareStatement("SELECT * FROM BLOBTest WHERE DATA='" + cipheredName+"'");
//builds a map for clients to use with the information from the query.
ResultSet rs = pst.executeQuery();
Map<Integer, String> result = new HashMap<Integer, String>();
while (rs.next()) {
byte[] recoveredBytes = rs.getBytes(2);
byte[] recoveredName = cryptManager.decrypt(keyBytes,
recoveredBytes);
result.put(rs.getInt(1), new String(recoveredName));
}
return result;
}
The problem is that making:
SELECT * FROM BLOBTest WHERE Data='[-25, 100, -33, 4, 70, 59, 85, -23, -30, 48, 89, 52, 38, 98, 39, -95]';
Returns an empty set, thus making the variable "rs" empty and therefore the returned map is empty. Everyone is sad because I'm a noob and can't make a simple query like this =(
