PHPActiveRecord is an open source ORM library based on the ActiveRecord pattern. The library was inspired by Ruby on Rails' implementation and therefore borrows many of its conventions and ideas.
1
vote
2answers
71 views
LEFT JOIN Association returns unknown column
I am using PHPActiveRecord and CodeIgniter. I am trying to create a blog CMS and a blog has many categories and its referring to another table called blogrefs. So basically
blogs => blogrefs => ...
0
votes
2answers
41 views
Do I need to define models for all associations?
If I have a users table and an email table, do I have to define an email.php model to define this relation in User.php:
static $has_many = array(
array('emails')
);
Also, if I have an ...
0
votes
2answers
133 views
switching database php activerecord
I'm using ActiveRecord and I need switching databases. When I log-in I select a database.
The databases are the same schema.
I tried:
$connections = array(
'1' => ...
0
votes
2answers
86 views
PhpActiveRecord: Creating initialize object
I'm using php activerecord. I need initialize a Order object and then set related objects as show below
$order = new Order();
Order->_plan = Plan::find(1);
I get the error Undefined property: ...
2
votes
1answer
1k views
PHP ActiveRecord for PHP < 5.3
I found RoR ActiveRecord very usefull. When I was looking for PHP version, I found this
Unfortunately, the use of namespace cause it work only ini PHP > 5.3. Do anyone have alternative that work for ...
1
vote
1answer
51 views
How to Massive Delete in PHP Activerecord with comparison operators
From this link
http://www.phpactiverecord.org/projects/main/wiki/Basic_CRUD
I got the following:
6 # MASSIVE DELETE
7 # Model::table()->delete(WhereToDelete);
8 Post::table()->delete(array('id' ...
0
votes
1answer
31 views
not found class $has_many through phpactiverecord
I have a many to many relationship between Profesional and Plan so I wrote the following code:
Profesional.php
class Profesional extends BaseModel {
static $table_name = 'profesionales';
...
0
votes
1answer
30 views
PHP ActiveRecord dynamic finder doesn't work
I've installed codeigniter with sparks, along with php-activerecord spark as instructed on getsparks.org
I've made model Item for Items data table
<?php
Class Item extends ActiveRecord\Model {
...
0
votes
1answer
179 views
Search multiple tables php activerecord
I have two tables in mysql
Users:
-id
-name
-email
-role
Position
-id
-position
I need to build a search term using PHPActiveRecord in Codeigniter.
A user types a term say 'John' or 'Designer' and ...
0
votes
1answer
167 views
How to insert into a table join other table using Activerecord in CodeIgniter?
I'm new to CodeIgniter and ORM, I hope you guys can help me with this.
The question table:
CREATE TABLE `question` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(128) NOT NULL ...
0
votes
1answer
142 views
association issue with php-activerecord & codeigniter
I'm using php-activerecord + sparks + codeigniter 2.0 and stuck trying to figure out the association between three tables.
I three tables :
Tables
contacts | primary_key = contact_id
...
0
votes
1answer
118 views
Access nested eager loaded model without causing N+1 queries in php activerecord
I am loading a model called Maintenance_Record with a nested eager load like so:
Maintenance_Record::find('all', array('include' => array('maintenance_plan' => array('user') ) ) );
As you ...
0
votes
1answer
202 views
php activerecord problem : 'ActiveRecord\RecordNotFound' with message 'Couldn't find Setting without an ID'
i am using php activerecord in my own mvc framework.
i extends AppModel from \ActiveRecord\Model
class AppModel extends \ActiveRecord\Model
{
}
and other models extends from AppModel
class ...
-1
votes
1answer
28 views
Cant tell if phpactiverecord is connecting to database
I am writing a web service for a droid app adn trying to use phpactiverecord. I am not using an mvc. I cannot tell whether it is connecting to my database correctly because I don't know what it ...
1
vote
0answers
38 views
“Nested” relationships php activerecord?
I'm struggling with relationships in PHPActiveRecord.
I have these tables:
User_group
id, name, ...
Seller:
id, group_id ...
Order:
seller_id, id ...
And I want to be able to do like ...
1
vote
0answers
138 views
Must manually load PHP ActiveRecord models
I'm drawing a blank. I have code working locally (which is MAMP). When moving to a nginx ubuntu box (running php-fpm), for some reason, phpactiverecord is acting up.
I finally traced it down to ...
1
vote
0answers
191 views
How to add into PHP ActiveRecord has_many association?
When using PHP ActiveRecord and you have models like:
class Message extends ActiveRecord\Model {
static $belongs_to = array(
array("user")
);
}
class User extends ActiveRecord\Model ...
1
vote
0answers
47 views
Is it possible to setup an EAV structure on PHP ActiveRecord?
What is the best way to link tables in an EAV table structure in PHP ActiveRecord so I can retrieve the entity and all of its attributes/values?
The table structure is something like.
person ...
1
vote
0answers
129 views
phpactiverecord association through a second table
Ok, I'm hoping to be able to properly explain this, so here goes. I'm using phpActiveRecord and trying to create a specific association through another association. It's not exactly a many to many ...
1
vote
0answers
307 views
PHP ActiveRecord creating a child model via Has_Many association
I'm picking up PHP Active Record and dealing with associations. I have two related objects using a "Has_Many" and "Belongs_to" (parent/child) and trying to create a child record when creating a new ...
0
votes
0answers
10 views
Accessing db methods at global scope in CodeIgniter model method
I'm using Codeingiter, and I'm trying to retrieve the last inserted database id from inside one of my model's methods.
The documentation tells me to use $this->db->insert_id(), however when I'm ...
0
votes
0answers
30 views
php-activerecord attr_accessible with roles
Rails 3.1 introduced the concept of mass-assignment "roles". The idea
is that you can specify different attr_protected and attr_accessible
lists for different situations.
class User < ...
0
votes
0answers
102 views
Unknown column 'blogcats.id' in 'where clause' ,'ActiveRecord\DatabaseException'
I am trying to refer Blogs table To Blogcats Table through Blogrefs. When i tried to retrieve blogs by a specific category id it returns the following error.
Fatal error: Uncaught exception ...
0
votes
0answers
62 views
php activerecord many to many
I've three models:
// student_id student_name
Student extends ActiveRecord\Model
{
static $has_many = array(
array('studentcourses')
);
}
// course_id course_name
Course extends ...
0
votes
0answers
27 views
phpactiverecord retrieve records
Let's make it short, I pass an user id into a function and try to get all attributes for this user:
$user = \Sitename\UsrManager::getUserById($user_id);
I then print_r($user) and get a bunch of ...
0
votes
0answers
41 views
kohana-activerecord: How to use file Kohana_Auth_Arm which is extending Auth class, when i try to create object of this file seeing error
How to use file Kohana_Auth_Arm which is extending Auth class? As Kohana auth arm class is having all required function, so i want to use it so that there is no need to write these function again. But ...
0
votes
0answers
36 views
ActiveRecord\MysqliAdapter not found
My MAMP is running Php 5.4.4.
I successfully managed to install Bonfire(latest) with Sparks to use PhpAR.
I've pre loaded the php-activerecord library in the config and works really well.
When I run ...
0
votes
0answers
55 views
phpactiverecord Can't use find_by_sql cause exception is throw
Hi whenever I want to use find_by_sql an exception is throw, everything is working fine with my models and while I dont use find_by_sql everything is working, does any know why is happening this?? ...
0
votes
0answers
67 views
phpactiverecord ORM transactions 30 sec error executing time
Well I'm trying to insert several rows from an csv file to a myslDB, my first attempt (wrong approach) was to trying to insert creating a new object with $o = new Model();
After read/research on the ...
0
votes
0answers
77 views
How to use the Connection Class in the php active records?
I am new to php activerecords..I want to extend that class...Could you please explain me how to do that?
There is a file called Connection.php containing the Connection class...How can I extend that ...


