• 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

Error writing data to client-side row cache

 
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
When I am trying to read store procedure from MY Sql throws the following Exception.


java.sql.SQLException: [synaptris][MySQL JDBC Driver]Error writing data to client-side row cache. Verify that the directory specified by the java.io.tmpdir property exists and the current user has permission to read from and write to that directory.
at syn.jdbc.base.BaseStatement.postProcessExceptionFromCommonExecute(Unknown Source)
at syn.jdbc.base.BaseStatement.commonGetNextResultSet(Unknown Source)
at syn.jdbc.base.BaseStatement.executeQueryInternal(Unknown Source)
at syn.jdbc.base.BaseStatement.executeDatabaseMetaDataQuery(Unknown Source)
at syn.jdbc.base.BaseDatabaseMetaData.getProcedureColumns(Unknown Source)
at com.intelliview.bl.components.StoredProcedure.getInputParams4mMetaData(StoredProcedure.java:273)


 
Ranch Hand
Posts: 2908
1
Spring Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Verify that the directory specified by the java.io.tmpdir property exists and the current user has permission to read from and write to that directory.


Are you setting any property like "java.io.tmpdir", if not, then check the synaptris API docs.

PS:I never heard any API named JDBC API "synaptris"
 
Karup Mew
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, we are setting TMPDIR property in startup.bat file and also I am able to read some stored procedure
 
Sagar Rohankar
Ranch Hand
Posts: 2908
1
Spring Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Then may be the problem is with SP, that's my guess !
 
reply
    Bookmark Topic Watch Topic
  • New Topic