我在将SQL值插入SQL-Server的text-column时遇到问题。
jdbcTemplate.update("插入客户(objectid,name,notes)VALUES(?,?,?);",customer.getObjectId(),customer.getName(),customer.getNotes ());
字段说明有类型文本,我得到一个异常错误的SQL语法[insert .....]嵌套异常是:操作数典型碰撞,varbinary与文本不兼容。
顺便说一句,我对float有同样的问题,但是没有int ..
这个问题有什么解决方案吗?它只出现在SQL-Server上,但相同的代码在MySQL上运行正常。
祝你好运