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.

learn more… | top users | synonyms

0
votes
1answer
23 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
0answers
24 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 < ...
1
vote
1answer
42 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
192 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 ...
0
votes
1answer
32 views

phpactiverecord get the next id

I'm using phpactiverecord. I have an Order object that has an id and code. On database, the id is the primary key int and auto increment. code is a varchar and unique and is composed by the id and ...
-3
votes
1answer
50 views

php syntax error when try to use phpactiverecord library [closed]

I have code ActiveRecord\Config::initialize(function($cfg) { $cfg->set_model_directory("models"); $cfg->set_connections(array("development" => "mysql://root:123@localhost/server")); } ...
0
votes
0answers
85 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 ...
1
vote
2answers
67 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
1answer
23 views

Passing variables to a has_one relationship in PhpActiveRecord

I'm using phpactiverecord (http://www.phpactiverecord.org/) in a project. I have the below relationship definded. Is there anyway to pass a variable to it so I can change language_id on the fly? ...
0
votes
2answers
294 views

Phpactiverecord, updating NOW() for an object

I've been attempting to use phpactiverecord for a project.. and I'm struggling to see if I can actually pass a mysql function through any of its native updating methods. I'm a little surprised I ...
0
votes
1answer
43 views

Find by relation in php-activerecord

I'm trying on php-activerecord for a project – I've used it before in Lithium and CodeIgniter – but I am stuck at something that I think should be pretty easy. But I simply can not wrap my head around ...
4
votes
2answers
64 views

MySQL - Search a field ignoring spaces

What would be a good way to search a field, ignoring spaces in the search term AND the field? Example: SELECT * FROM tablename WHERE NOSPACES(fieldname) LIKE '%{search term with spaces removed}%' ...
1
vote
0answers
34 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 ...
0
votes
0answers
54 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 ...
-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 ...
0
votes
0answers
25 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 ...
1
vote
0answers
118 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 ...
0
votes
1answer
21 views

phpactiverecord joins with limit

What's the correct way of adding a limit to an activerecord query which includes join statements? I've already got an activerecord join statement which converts to the correct SQL static $belongs_to ...
0
votes
1answer
147 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 ...
-1
votes
4answers
171 views

PHP ActiveRecord - How to list out the all table names of a MySql database? [closed]

I m using PHP ActiveRecord in my application How to list all the table names of the database Here i had configured the connection of database as below require_once ...
1
vote
6answers
345 views

PHP ActiveRecord doesn't seem to use my custom attribute

I have a model defined as follows: class User extends ActiveRecord\Model { function get_name() { return $this->first_name . " " . $this->surname; } } however when I show ...
0
votes
0answers
35 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
1answer
83 views

How to count unique values in rows with PHPActiveRecord?

For example, I have table: id | number ----------- 1 | 1 2 | 1 3 | 1 4 | 2 5 | 2 6 | 3 i need to count unique numbers (1, 2 and 3), that is 3 i have working SQL code: SELECT COUNT(DISTINCT ...
0
votes
1answer
79 views

Kohana: Using auth module of php-activerecord, but seeing error as “ Class 'Arm' not found”

I am using PHP-activerecord in kohana and using its auth module by calling function : User::create_user("Name", "Name", "Name", "Name"); But seeing error : ErrorException [ Fatal Error ]: Class ...
1
vote
0answers
171 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 ...
2
votes
1answer
192 views

Error handling codeigniter and phpactiverecord

I'm new to CodeIgniter and PhpActiverecord and I'm wondering how to best propagate errors from the Model to the Controller when using CI and phpactiverecord. As a simple example consider this: class ...
1
vote
0answers
41 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 ...
0
votes
1answer
152 views

PHP active record: use conditions to select assosiative data

I use PHPActiveRecord. Assume I've a table Manager and a table Employees. A Manager has multiple Employees and an Employee has one Manager. I've defined this association: model Manager: static ...
0
votes
1answer
42 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
2answers
40 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
1answer
67 views

PHP ActiveRecord with bridge tables

I'm trying to build the association between my "homes" table and "furniture" table. Basically, a home can have multiple furniture, so I have a home_furniture_bridge table that looks like this: ...
0
votes
1answer
123 views

Check Record Set Exists For PHP Active Record

In short, when I pull a record using php activerecord, I'd like to check that it exists before moving forward. There has to be an easier way to do this as each situation seems to be different and I'm ...
0
votes
2answers
128 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
3answers
123 views

CodeIgniter with PHP Activerecord Spark Multiple Databases

So far I really enjoy how CodeIgniter plays together with PHP ActiveRecord ORM tool, How would I go about specifying which connection to use in my models? My config/database.php file has 2 ...
0
votes
0answers
35 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 ...
2
votes
3answers
274 views

has_many through using custom table and field names

I'm using php.activerecord, and I am trying to link tables together. I'm not using their structure, but php.activerecord assumes I am, so it doesn't always work. I'm trying to use it on an already ...
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
3answers
558 views

Activerecord-association: create new object (find class)

I have an model with a relation, and I want to instantiate a new object of the relations type. Example: A person has a company, and I have a person-object: now I want to create a ...
0
votes
1answer
108 views

PHP: How do you create table with active record?

Believe it or not I can not find an answer anywhere, it must be very simple... I installed composer and imported in my project active record in my Test App. Now i am trying to create a table ...
0
votes
1answer
155 views

Using sum() sql with php ActiveRecord

I'm using ActiveRecord in my app. I need to add many objects by attribute. Currently I do it as follows: foreach($objects as $object): $result += $object->value; endforeach; But it is very ...
0
votes
1answer
143 views

Model association with custom table and key names

I'm using php.activerecord, and I am trying to link two tables. I have contacts and contactCompanyLinks. Each contact can contain one or more rows in the link table. The field names in the table ...
4
votes
1answer
2k views

PHP & Twig : Trouble accessing variables in template

In my controller I am setting the following variables and passing them to the Twig template: $data = $model::all(); // returns object [phpactiverecord] $fields = getFields(); // returns associative ...
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 ...
0
votes
1answer
59 views

CI Spark Ion_auth & phpactiverecord

before anything, please understand i'm a complete codeigniter noob, and know only enough php to get by. But understand it really well if it's explained very well. I'm building a web app, installed ...
1
vote
1answer
112 views

Can krumo() and PHP ActiveRecord work together in CodeIgniter?

UPDATE: Krumo seems to be outdated, and I discovered Kint, which does everything I wanted out of Krumo. I started a CI site that uses PHP ActiveRecord. Please note: PHP ActiveRecord is not the same ...
0
votes
1answer
114 views

Sort PHPActiveRecord array of objects alphabetically

How can I sort a PHPActiveRecord array alphabetically?
0
votes
2answers
80 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
3answers
64 views

Iterate over object with private attributes

I'm using PHP with php active record. When i retrieve a record from the database the attributes are listed as private. I need to iterate over the attributes and retrieve the key => value pair. How ...
0
votes
2answers
529 views

CodeIgniter2 + Sparks + Php-ActiveRecord troubles with PostgreSql

I'm using CodeIgniter2 + Sparks + PhpActiveRecord, I installed following this tutorial : http://heybigname.com/2011/07/28/codeigniter-2-sparks-php-activerecord-part-1-installation/ with MySql works ...
0
votes
1answer
161 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 ...

1 2