我正在使用 JPA / EclipseLink 进行数据库访问。在我的 MySQL 数据库中,我需要将参数 group_concat_max_len 设置为更大的数字。我可以用 JPA 做到这一点吗?
我用以下语句进行了尝试:
Query query = em.createNativeQuery("SET group_concat_max_len = 10240;");
但这会引发 java.lang.IllegalStateException: Invalid call on a query that does not return result sets。
有人可以帮忙吗?
谢谢伯恩哈德