--
You received this message because you are subscribed to the Google Groups "vert.x" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vertx+un...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/vertx/4347370f-b4e2-48e0-9a94-1255276fbe3cn%40googlegroups.com.
String encodedInput = Base64.getEncoder().encodeToString(originalInput.getBytes());
To view this discussion on the web, visit https://groups.google.com/d/msgid/vertx/CACsDUmUS-9ABeneb%2BMQeWA4yYXWKjRVbDU2EG1OgnurJ3jNWAw%40mail.gmail.com.
Connection jdbcConn = sqlConnection.unwrap();
Blob blob = jdbcConn.createBlob();
blob.setBinaryStream(1).write(bytes);
JsonArray params = new JsonArray().add(blob);
connection.queryWithParams("INSERT INTO XXX (b) VALUES (?)", params, handler);
To view this discussion on the web, visit https://groups.google.com/d/msgid/vertx/CALOz%2BjCf0mKJtdx3AnA1VGhfXOUfTOv7jL0Du2eKm2m4vt0bQA%40mail.gmail.com.