• 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

to store the form data temporarily at client side

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am try to store the form data temporarily,not in database at client side.but i want some object like resultSet to retrieve the data,but not use resultSet or arrayList etc..,why because i am not use any database to store the form data.So,is there any chance to get(i.e; for use) an object like resultSet.please give me any suggestions,to store the form data temporarily at clientside.I am using arrayList,but it does not have sufficient methods like resultSet.
 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dosn't the Iterator likes a resultset?

The interface List has a iterator() method returns a Iterator
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What do you mean by "storing at the client side"?
 
Maadhava Rao
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hey,no problem!my english is also pooooooor?don't worry.
ok,i use list,but those are not having sufficient methods like methods of resultSet.thanks for your reply!but,please try to search an object like resultSet other than list,set or maps.ok
 
Maadhava Rao
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i mean just like beans!ok
 
Bear Bibeault
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's ok if your English is poor, but you'll need to try to express what you are really trying to accomplish.

Beans and resultsets never get sent to the client, so there is no way to store them there.

Are you really asking about caching database data at the presentation layer (which is still on the server, not the client)?
[ February 28, 2008: Message edited by: Bear Bibeault ]
 
Maadhava Rao
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i want an object just like resultset,but not resultset why because i don;t use any database.so i need like resultset,is there any class like resultset not list,sets.
 
reply
    Bookmark Topic Watch Topic
  • New Topic