Tagged Questions
0
votes
1answer
41 views
Getting the db name or url used from models in php activerecord?
How can I get the database name or url used in my models in php activerecord?
I have
$connections = array(
'conn1' => 'mysql://user:pass1@localhost/db1;charset=utf8',
'conn2' => ...
0
votes
3answers
65 views
phpactiverecord: get objects related by condition
I'm using ActiveRecord with a database already exists.
I need get all accounts related with a personan with account_type = 'A' so I have:
class Person extends ActiveRecord\Model {
static $has_many = ...
2
votes
2answers
666 views
PHP Activerecord: updating array of objects
The following code will return an array of PHP Activerecord Objects:
$book = Book::find('all');
Assuming the program is aware of the order of books I can continue and update the attributes of the ...
