I'm using prepared statements to load my database with various small strings, and it appears java is automatically trimming them. When I attempt to load a value of " " (a single space), it ends up as a blank string in the database. Multiple spaces have the same result, so it appears to be trimming.
I don't call any .trim() on the text, I simply have this:
cmd.setString(3, " ");
to load one of my parameters. Otherwise, everything works fine, it is only whitespace that appears to have any problems. Since I'm making many queries in a sequence, I must used a prepared statement or else the inefficiency is too great, so I can't just manually load up sql statements.
Is there some option somewhere to turn this off? Or a workaround of some kind?