• 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

small confusion with"meaning of persistent word "

 
Ranch Hand
Posts: 89
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can anybody clarify me in simple words...

what exactly is the definition for...
persistent fields
persistent data
persistent state

I just kno this thing::

Data that exists from session to session.
Information that endures beyond a single instance of use, e.g., longer than one call attempt.
 
Ranch Hand
Posts: 368
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
'Persistence' in this context I think means 'storable in permanent data store' like a relational database. Though this is a pretty subjective answer. Specific answers anybody
 
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Writing the state of an object to some permanent storage so that it can be retrieved later.
 
Ranch Hand
Posts: 106
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
persistent fields mean fields of database table
persistent data mean data to be stored to database table.
persistent state is the state of data.

Thanks,
Lave

Originally posted by Neetika Sood:
Can anybody clarify me in simple words...

what exactly is the definition for...
persistent fields
persistent data
persistent state

I just kno this thing::

Data that exists from session to session.
Information that endures beyond a single instance of use, e.g., longer than one call attempt.

reply
    Bookmark Topic Watch Topic
  • New Topic