Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes JDBC and the fly likes PreparedStatement pads spaces Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "PreparedStatement pads spaces " Watch "PreparedStatement pads spaces " New topic
Author

PreparedStatement pads spaces

Vic Dayton
Greenhorn

Joined: Apr 21, 2002
Posts: 7
Hi,
I have encountered a problem that if I used PreparedStatement to insert records, then JDBC will pad spaces in the fields.
But if I used regular statement, then the insert is fine.
Is this is normal? Is there any way I can fix this problem?
Any advice is greatly appreciated.
Thanks
-VD
Varun Khanna
Ranch Hand

Joined: May 30, 2002
Posts: 1400
Is the datafield giving you this problem is of type CHAR ? if yes, Try VARCHAR and see if this works as in the SQL standard, CHAR is a fixed length data type. In many DB's (not all), that means every character must match, including size and trailing blanks.


- Varun
Vic Dayton
Greenhorn

Joined: Apr 21, 2002
Posts: 7
Thanks for the reply. The datafield is Varchar.
But I found the real problem is the the setString() method. I still don't know why.
I found a work around is to supply all the value in the update SQL statement when construct the preparedStatement. I need this work around use the JSTL SQL tag. :-(
Thanks.
-VD
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: PreparedStatement pads spaces
 
Similar Threads
How to deal with single quote?
For Oracle 8i, PreparedStatement Query fails for Key.
executing an update sql takes too long , what is problem ?
Insert space in xml
Insert into PrepareStatement Using Field Name