in reply to Reviewing Rows from MSSQL SELECT statement
Not trying to deflect your question, but do you gain anything from using the MSSQL:SQLLib over say... DBI? DBI is database independant, so if you ever had to transition this code to another platform, the work would be minimal, compared to re-writing it from a platform specific module like you're using. I'm not trying to be a DBI zealot at all. DBI has just worked really well for me in MySQL,Oracle, and MSSQL.
<edit> Since I was babbling about it I thought I would expand on the fact that DBI is an interface, and you need the database driver DBD::ODBC to use it with DBI. Check the POD on them, and there are some good examples of how to get something up and running. </edit>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Reviewing Rows from MSSQL SELECT statement
by dtharby (Acolyte) on Jun 09, 2005 at 07:31 UTC | |
|
Re^2: Reviewing Rows from MSSQL SELECT statement
by dtharby (Acolyte) on Jun 09, 2005 at 07:50 UTC | |
by Grygonos (Chaplain) on Jun 09, 2005 at 12:43 UTC |