• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

iBATIS appends String to table name

 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello,

I am having a peculiar problem with iBATIS. It appends a string (I assume schema name) to my table.

<statement id="getProjectsAsMap" resultClass="java.util.HashMap">
select ID from Projects;
</statement>

Gives error: table not found "alfresco.projects"

Why would it append "alfresco." to my table name? I configure iBATIS using Spring and import alfresco's context.xml. Somewhere in there it says something that makes iBATIS add "alfresco." to my table name.

Any ideas what it could be? Thanks!
 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what does your ibatis config look like?
 
reply
    Bookmark Topic Watch Topic
  • New Topic