Re: Hashtable and database table
Posted By:
Bozidar_Dangubic
Posted On:
Wednesday, December 5, 2001 06:06 AM
well, database is not going to help you in solving NullPointerExceptions at run-time. these usually come from bad logic in the program. but to answer your question directly you can store objects into a relational database by mapping java types to sql row types which you need to define for each object you want to store. look into java.sql.SQLData interface for more info...