Reputation: 2529
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.
Upvotes: 0
Views: 1922
Reputation: 65537
Get rid of the parentheses around A1
:
stmt.setString(++it, "A1");
Upvotes: 3