cancel
Showing results for 
Search instead for 
Did you mean: 

Java Dictionary - CLOB

Former Member
0 Kudos

Experts,

I have a requirement wherein I need to have a CLOB type column in my Java dictionary table. Is this possible? I could only see a Datatype called Binary in the built in types while defining columns of the table.

Any pointers ...would appreciate early replies.

Regards,

Amol Joshi

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hai,

you can use String ,

It will consider of JDBC type as CLOB

regards,

Former Member
0 Kudos

Any documentation link with details if you can provide?

Former Member
0 Kudos

Hi,

see <a href="http://help.sap.com/saphelp_nw04/helpdata/en/16/9dc9ac8bc72a48b80e639abaa2e497/frameset.htm">this</a>.

Hope it helps!

Former Member
0 Kudos

So if i create a dictionary table with a column having data type as string . as the mentioned link says...it will accept Clob data if I use say PreparedStatement and call method

preparedStatement.setClob(int,java.sql.Clob)

and also resultSet.getClob(int i)

am I correct?