in reply to Re: PHP over perl
in thread PHP over perl
This is also a two-edged sword, in that PHP traditionally hasn't had anything equivalent to DBI, only database-specific interfaces. So if you wrote your app for MySQL and wanted to switch to PostgreSQL, you'd basically have to rewrite the whole thing if it was in PHP, while most of the transition in Perl would just be a matter of connecting to a different DBD driver (assuming you stuck with vanilla SQL instead of using lots of queries that call non-standard MySQL extensions, of course).
But, yeah, I agree that DBI and DBD::SQLite should be standard if they aren't already.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: PHP over perl
by moritz (Cardinal) on Feb 10, 2009 at 16:38 UTC | |
by DStaal (Chaplain) on Feb 10, 2009 at 18:55 UTC | |
|
Re^3: PHP over perl
by AKSHUN (Novice) on Feb 10, 2009 at 18:16 UTC | |
by leocharre (Priest) on Feb 18, 2009 at 14:34 UTC |