日志
2017-12-19 21:50:17.957 DEBUG 9468 --- [nio-8081-exec-9] o.nutz.dao.impl.sql.run.NutDaoExecutor : INSERT INTO t_business_order(id,bdate,user,spoint,epoint) VALUES(?,?,?,?,?)
| 1 | 2 | 3 | 4 | 5 |
|----------------|------------|-------|------|------|
| 17121921491001 | 2017-12-19 | admin | 测试起点 | 测试终点 |
For example:> "INSERT INTO t_business_order(id,bdate,user,spoint,epoint) VALUES(17121921491001,'2017-12-19','admin','测试起点','测试终点') "
数据库
字符集 utf-8
插入数据是 问号 ????
spoint,epoint的字段都是varchar(255)
nutz插入代码
dao.insert(order, true, false, true);
为什么????