Tagged Questions
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
1answer
158 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
0answers
54 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
63 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 ...
1
vote
1answer
398 views
PHP ActiveRecord - Could not find the association in model
I'm using Codeigniter 2.1.0 along with the spark to enable PHP ActiveRecord and I am unable to create a many to many association through a lookup table.
Whenever I load the Event model it fails with ...
