in reply to Re^2: Never use Storable to save XS objects
in thread Never use Storable to save XS objects
I think you need to answer a couple of questions first:
My criteria for good software:
- What do you expect to happen when you serialize the DB connection? Should the DB connection be closed? What should be stored in the serialized data structure?
- What do you expect to happen when you de-serialize the DB connection? Should the connection happen immediately? What about waiting until the first query because you may not actually use the DB connection at every given de-serialization.
- Should passwords be stored? If so, how?
- How should DBI connections using DBD::Excel or DBD::CSV work?
- What should happen if you de-serialize the thing and attempt to use the DB connection on a box that doesn't have the right things installed?
My criteria for good software:
- Does it work?
- Can someone else come in, make a change, and be reasonably certain no bugs were introduced?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: Never use Storable to save XS objects
by robins (Acolyte) on Nov 08, 2007 at 18:00 UTC | |
by dragonchild (Archbishop) on Nov 08, 2007 at 18:36 UTC |
In Section
Meditations