• 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

Delete a RecordStore

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
This shouldn't really be a problem, but I'm having trouble deleting a RecordStore:

My code:
--------
try
{
RecordStore reiser=
RecordStore.openRecordStore("Reiser",true);

String fileName =reiser.getName();
reiser.closeRecordStore();
RecordStore.deleteRecordStore(fileName);
}
catch(RecordStoreException rse)
{
rse.printStackTrace();
}
--------
This code gives me a RecordStoreException. That's all I'm able to tell from the exception. I know that the fileName variable contains the correct name of the RecordStore.
I appreciate any help from you!
Yours,
Ole Kristian Buseth
 
Ranch Hand
Posts: 2676
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is the record store being opened somewhere else in your code without closing it? You have to call the close method as many times as you call the open method before it will truly close. If you want to verify that the record store is being found, you could put a catch block before the catch block you have to catch a RecordStoreNotFoundException. If that catch block does not execute, the you will know that it is finding the record store.
 
Ole Kristian
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hmmm...
Doesn't that strike you as a weird implementation of the closeRecordStore() method?
Ole Kristian
reply
    Bookmark Topic Watch Topic
  • New Topic