in reply to CGI::SQL.pm initial release

Hello,

Now that some time has passed, I no longer use this module, nor really recommend it. I still the like spirit of the routines here, but have found replacements I like better. In place of the insert and update routines, I use similar routines in DBIx::Abstract. In place of the selection list builder, I use the newer DBI API to get a hash back directly through DBI, and then pass that straight into a CGI.pm function, and am happy to keep the abstraction. I still use and like the "build_sql_from_keywords" function, but this is mostly because I'm familiar with it-- there is probably a better replacement on CPAN.

-mark

  • Comment on Re: CGI::SQL.pm initial release (a note from the author)

Replies are listed 'Best First'.
Re: Re: CGI::SQL.pm initial release (a note from the author)
by markjugg (Curate) on Jan 07, 2004 at 18:39 UTC
    Now that even more time has passed, I use SQL::Abstract instead of DBIx::Abstract.