-1

我有一个使用 DAO 的 java 应用程序,它包装NamedParameterJdbcTemplate 了数据库的表名和列名,这些表名和列名需要转义[]才能使查询正常工作,这很好。但是,我的一个专栏有一个作为列名的一部分。因此,如果我尝试运行以下查询:

INSERT INTO [Supervisory Description]([Supervisory?], Description)  
       VALUES ( :id, :description );

我得到以下异常,列在这个问题的底部。重要的部分是:

InvalidDataAccessApiUsageException: You can't mix named and traditional ? placeholders. You have 2 named parameter(s) and 1 traditonal placeholder(s)`

所以它理解:id并且:description很好。但由于某种原因,它认为[Supervisory?]包含一个位置(传统)占位符,而不仅仅是一个列名。

所以当我打电话时,我getJddbcTemplate().batchUpdate(myInsertQuery, queryParams);该如何表示字符应该被忽略?

例外:

org.springframework.dao.InvalidDataAccessApiUsageException: You can't mix named and traditional ? placeholders. You have 2 named parameter(s) and 1 traditonal placeholder(s) in [INSERT INTO [Supervisory Description]([Supervisory?], Description) VALUES ( :id, :description )]
    at org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildValueArray(NamedParameterUtils.java:316)
    at org.springframework.jdbc.core.namedparam.NamedParameterBatchUpdateUtils$1.setValues(NamedParameterBatchUpdateUtils.java:45)
    at org.springframework.jdbc.core.JdbcTemplate$4.doInPreparedStatement(JdbcTemplate.java:899)
    at org.springframework.jdbc.core.JdbcTemplate$4.doInPreparedStatement(JdbcTemplate.java:890)
    at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:589)
    at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:617)
    at org.springframework.jdbc.core.JdbcTemplate.batchUpdate(JdbcTemplate.java:890)
    at org.springframework.jdbc.core.namedparam.NamedParameterBatchUpdateUtils.executeBatchUpdateWithNamedParameters(NamedParameterBatchUpdateUtils.java:40)
    at org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.batchUpdate(NamedParameterJdbcTemplate.java:324)
    at us.ak.state.revenue.cssd.AccessImport.dao.BaseHibernateDAO.batchInsert(BaseHibernateDAO.java:163)
    at WICKET_us.ak.state.revenue.cssd.AccessImport.dao.BaseHibernateDAO$$FastClassByCGLIB$$9a8099e8.invoke(<generated>)
    at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:191)
    at org.apache.wicket.proxy.LazyInitProxyFactory$CGLibInterceptor.intercept(LazyInitProxyFactory.java:333)
    at WICKET_us.ak.state.revenue.cssd.AccessImport.dao.importers.SupervisoryDescriptionImporterDAO$$EnhancerByCGLIB$$36bf57cd.batchInsert(<generated>)
    at us.ak.state.revenue.cssd.AccessImport.dao.AccessExporter.typeProcessor(AccessExporter.java:88)
    at us.ak.state.revenue.cssd.AccessImport.dao.AccessExporter.process(AccessExporter.java:61)
    at us.ak.state.revenue.cssd.AccessImport.dao.AccessExporter$$FastClassByCGLIB$$9f5e6d3c.invoke(<generated>)
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:698)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150)
    at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:96)
    at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:260)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:94)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:91)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:631)
    at us.ak.state.revenue.cssd.AccessImport.dao.AccessExporter$$EnhancerByCGLIB$$2ad77846.process(<generated>)
    at WICKET_us.ak.state.revenue.cssd.AccessImport.dao.AccessExporter$$FastClassByCGLIB$$9f5e6d3c.invoke(<generated>)
    at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:191)
    at org.apache.wicket.proxy.LazyInitProxyFactory$CGLibInterceptor.intercept(LazyInitProxyFactory.java:333)
    at WICKET_us.ak.state.revenue.cssd.AccessImport.dao.AccessExporter$$EnhancerByCGLIB$$5edf35b8.process(<generated>)
    at us.ak.state.revenue.cssd.AccessImport.dao.AccessExporterTest.testProcess(AccessExporterTest.java:83)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74)
    at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:83)
    at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:231)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:88)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
    at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
    at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:174)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:77)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:195)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:63)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)

编辑: 感谢@tieTYT 提供的信息,我尝试添加{espace \\}到我的字符串末尾并将我的列名更改为 [Superverisory\?] 在查询中。它没有用。原来问题是特定于 Spring 的。Spring *引发了异常NamedParameterUtils.buildValueArray它试图将带有命名参数的查询转换为仅使用传统参数的查询,这让我感到窒息并且不明白它不是传统参数。

4

3 回答 3

1

虽然命名约定非常糟糕,但它仍然可以在 SQL Server 中使用。随附的是我在 tempdb 中创建、插入数据并从中选择的临时表。

在此处输入图像描述

-- Create a badly named table
create table tempdb.dbo.[Supervisory Description]
(
  [Supervisory?] int, 
  [Description] varchar(255)
);
go

-- Insert the data
insert into  tempdb.dbo.[Supervisory Description]
([Supervisory?], [Description]) values (1, 'This is fun');
go

-- Show the data
select * from tempdb.dbo.[Supervisory Description];
Go

手动创建一个具有相同名称的 MS Access 表并稍微更改 SQL 代码也可以正常工作。

在此处输入图像描述

我认为问题在于 DAO/Java。它在想 ? 是一个占位符。

您是否尝试打开带引号的标识符。这是会话级别设置。这将允许您将 [] 替换为“”。

这可能会使 DAO 层忽略错误的字段名称。

-- Set quoted identifier on
SET QUOTED_IDENTIFIER ON
GO

另一个解决方案是在 MS Access 中创建一个重命名字段的视图。这就是为什么“选择数据”查询显示在表格下的原因。

然后让 Java 程序与视图相反。

祝你好运

于 2013-11-13T20:27:37.597 回答
0

根据this reference,通常有一种独立于语言的方式来执行此操作,但我看不到在表/列名称上使用它的方法。

在官方文档中很难找到这个,但是我找到了这篇文章,它似乎说带有 a 的标识符名称?是无效的。

您可以在第一个字符后使用以下符号:#、$ 和 _。

于 2013-11-13T18:53:56.660 回答
0

所以问题在于Spring如何处理?使用NamedParamaterJdbcTemplate解决方案时切换到使用常规JdbcTemplate创建任何必要的 RowMappers 并自己处理。

所以现在我正在使用:

List<Object[]> li = new ArrayList<Object[]>();
for(T t : list) { li.add(toObjectArr(t)); } //toObject converts my Pojo to Object[]

JdbcTemplate template = (JdbcTemplate)getJdbcTemplate().getJdbcOperations();
//paramconverter is a pre-compiled regex that matches :\w*
String insert = paramConverter.matcher(getInsertQuery()).replaceAll("?");

template.batchUpdate(insert, li);
于 2013-11-14T02:03:11.710 回答