From: Matthew G. <mat...@gm...> - 2008-01-12 00:19:43
|
The last time I tested phpESP would work with MySQL, Postgres and sqlite using ADODB. That was some time ago so it may not work cleaning against anything but MySQL now. However, I would really like to try and keep it working against my/post/lite. Is there anyway you can implement what you need using something portable? You'd probably need to add a function in admin/include/lib/espdatalib.inc to handle the different DB's: switch ($cfg['adodb_database_type']) { case "mysql": case "postgres": case "sqlite": On Fri, 2008-01-11 at 18:27 -0500, Bishop Bettini wrote: > I want to use a MySQL extension to SQL (INSERT ... ON DUPLICATE KEY > UPDATE), and I want to make sure that phpESP requires MySQL (even > though the underlying ADODB libraries support PostgreSQL, etc. > > bishop > |