I am learning pdo in php , so as to make database access easier and more efficient .One explanation i have read for fetch _class is that The properties of your object are set BEFORE the constructor is called.What does this mean? Any direction is greatly appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
This means that when using PDO to return a result into a custom object, you are required to set out the member variables which correspond to the query result keys. such as:
This way PDO can set the variables to the object outside of its internal scope. if you user class was like so:
then PDO Would not be able to set the values from outside the scope, as there are no public variables defined. |
||||
|
Say you have this snippit of code
The bar propery for $obj will be set to "1" not what is retreived from the database. If you would like it to be set to the result from the database instead of "1" you can change the fetch mode to
This causes the constructor to be called before assigning the results to the properties |
|||
|
|