|
 |
|
No matching records found. |
|
 |
| Date Created |
8/4/2008 2:21:48 AM
by
somms
:
There is a serious bug updating and deleting collections. No filter are asociated to collection items so every object will be updated or deleted!!!
I've solved this bug checking for empty SQL where clauses, and calling then to this function:
function build_where_id_clause()
{
$sql="";
foreach ($this->primary_keys as $key)
{
if($sql!="")
{
$sql.=" AND ";
}
$sql.= "$key LIKE ". $this->sql_escape($key, $this->data[$key]);
}
return $sql;
}
|
6/3/2005 9:53:37 AM
by
my.generation
:
I just updated the MySQL library and tested it with an old MySQL Database. I also updated the template (to fix a bug) and attached a very simple sample php application that I built to test the mysql functionality.
|
5/23/2005 11:41:53 AM
by
my.generation
:
Ooops -- I should make these things editable, huh -- The MySQL file was sent to me by Tuan Nguyen.
|
5/23/2005 11:39:48 AM
by
my.generation
:
I havn't had the opportunity to test the MySQL PHP architecture file. It was sent to me by .
|
4/6/2005 6:55:37 PM
by
jdg
:
I'm Spanish, my english is very bad,... One cuestion, i see that there is file like msaccess.php, mssql-odbc.php and postges7.php, my cuestion is, is there mysql.php?, If there is some file like mysql.php please tell me where.
|
|