Hi
I have a code for table creating:
create table clt (id bigint not null, sources set('A1', 'empty', 'A2', 'A3'), text varchar(50));
table was created successfully.
now I'm trying to insert data:
java.sql.PreparedStatement stmt = null;
String query = "insert into clt (id, sources, text) values (?, ?, ?)";
stmt = conn.prepareStatement(query);
int it = 0;
stmt.setLong(++it, 25);
stmt.setString(++it, "A1, A2");
stmt.setString(++it, "some text data");
stmt.executeUpdate();
and gettting an error :(
exception: java.sql.SQLException: Data truncated for column 'sources' at row 1
without sources everything is ok.
where is my mistake?
thank you.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…