Home » Database » DB_DataObject » Bug #8363
Fields "enter" and "frompage" are not available in mysql
Details
| Submitted | 2006-08-04 14:21 UTC |
|---|---|
| From | info at otdyh dot ru |
| Status | Bogus |
| Package | DB_DataObject |
| PHP Version | 4.3.11 |
| OS | Linux |
| Roadmaps | (Not assigned) |
Comments
[2006-08-04 14:21 UTC] info at otdyh dot ru
Description:
------------
If i have table sample
in int primary key autoincrement
enter (varchar(255))
frompage (varchar(255))
fromp (varchar(255)
Test script:
---------------
$object=DB_DataObject::factory('sample');
$object->enter='5';
$object->frompage='5';
$object->fromp='5';
$object->insert();
in db i can see
id=1;
enter='';
frompage='';
fromp='5';
Expected result:
----------------
id=1;
enter='5';
frompage='5';
fromp='5';
Actual result:
--------------
in a some reason can't save such names(