I want to delete some contents of my previously stored data
OR
suppose if I store my vector in data base synchronized(store)
{
store.setContents(vec1);
store.commit();
}
and after this if i again store a vector suppose synchronized(store)
{
store.setContents(vec2);
store.commit();
}
then what contents are present in my database ? 1 . Only vec2 2 . Both vec1 and vec2
if both plz tell me the way to delete vec1
Last edited by Rojiwadiya dinesh : 02-23-2007 at 02:36 AM.