/**
* A statement class that implements DB_IStatement_1
* NOTE: in most cases, you should be type-hinting for DB_IStatement_1
* @author Andrew Minerd <andrew.minerd@sellingsource.com>
*/
class DB_Statement_1 extends PDOStatement implements DB_IStatement_1
{
}
i am getting following error .
Strict Standards: Declaration of DB_Statement_1::execute() should be compatible with PDOStatement::execute($bound_input_params = NULL) in /virtualhosts/libolution/DB/Statement.1.php on line 12
Strict Standards: Declaration of DB_Statement_1::fetch() should be compatible with PDOStatement::fetch($how = NULL, $orientation = NULL, $offset = NULL) in /virtualhosts/libolution/DB/Statement.1.php on line 12.
Line # 12 is mentioned above.
**
**