Hi,
I am currently working on a web application that requires certain requests by users to be persisted. I have three choices:
- Serialize each request object and store it as an xml text file.
- Serialize the request object and store this xml text in a DB using CLOB.
- Store the requests in separate tables in the DB.
In my opinion I would go for option 2 (storing the serialized objects' xml text in the DB). I would do this because it would be so much easier to read from 1 column and then deserialize the objects to do some processing on them. I am using c# and asp .net MVC to write this application. I am fairly new to software development and would appreciate any help I can get.