I cannot find any method like
char c = 'c';
preparedStatement.setChar(1, c);
How to set character to a prepared statement?
|
I cannot find any method like
How to set character to a prepared statement? |
|||
|
The JDBC Specification 4.0 in Appendix B (Data Type Conversion Tables) states the following conversions: This table also shows the conversions used by the SQLInput reader methods, except that they use only the recommended conversions.
TABLE B- 1 JDBC Types Mapped to Java Types Therefore |
||||
|
|
|
Use setString() to set the variable. To get it back use getString() and assuming it is not null do something like this to get the character:
|
|||||||
|
|
What is the type in the database? But I am pretty sure that jdbc just handle chars as strings of length 1. |
|||
|
|
|
Maybay you can use the replace method:
Then you start the program with the string Peter with the text Jhnson and the replace method replaces the j for jo. |
|||
|
|
setString? – Nishant Apr 16 '11 at 12:38preparedStatement.setObject(1, c, java.sql.Types.CHAR)? – jCoder Apr 16 '11 at 12:43