Sean Evans wrote: > I plan to use Postgresql for data storage, and was wondering what the > recommended approach was. Should I write a Provider? Encapsulate database > access behind a taglib? I appreciate your help.
It depends on what your needs are. A few (simplified) use-cases: If you have queries with complex post-processing logic you might want a taglib as it might turn out to be more flexible. If you have queries with little or no post-processing then go for a provider and read the manpage for XML::Generator::DBI thoroughly. If you are storing documents in the db, then the provider route is definitely the way. -- Robin Berjon <[EMAIL PROTECTED]> Research Engineer, Expway 7FC0 6F5F D864 EFB8 08CE 8E74 58E6 D5DB 4889 2488 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
