Everything appears to be correct. Try deleting any files in
app/tmp/cache/models/ if you haven't already. And set debug to 2, both
so the models won't be cached and so you can see what queries are
being run.
On Mon, Oct 11, 2010 at 2:04 PM, Ashwani Kumar
wrote:
> Hi all! Today was trying to learn
Hi all! Today was trying to learn associations but i couldn't succeed.
I'm getting some issue in getting associated array. I've two tables :
authors
- id
- name
- email
- website
books
- id
- isbn
- title
- description
- autho
Thanks for the help.
I kept playing around with it and I realized I made the associations
more complicated than I needed to.
I removed the "join tables" (menu_item_types, menu_item_subtypes) and
added the association: menu_item belongsTo(menu_type, menu_subtype).
Doing a find('all') on MenuItem g
Try setting $this->recursive = 2.
On Sun, Nov 29, 2009 at 5:04 AM, un professional <
iamunprofessio...@gmail.com> wrote:
> I am trying to make some associations with a restaurant menu. I have
> five tables and they are all linked, although not directly. How do get
> info from all tables if some t
I am trying to make some associations with a restaurant menu. I have
five tables and they are all linked, although not directly. How do get
info from all tables if some tables aren't in direct relation to the
"calling table"?
Here is my setup:
menu_items
-id
-name
-price
menu_types: ( has
Aargh...name conventions, still not used to it. Thanks for the heads up,
knew it had to be something obvoius. It always is ;))
Now it works like a charm.
--
Zoran Kovac
091/ 588 6175
V.Gorica
On Fri, Jul 17, 2009 at 9:53 AM, Carlos Lavin wrote:
> Tables are supposed to be plural (users,groups
Tables are supposed to be plural (users,groups,medicinal_devices) and the
foreign keys singular(user_id,group_id...)
Change it and give it another shot =)
2009/7/17 Zoran Kovac
> Here are some of the table fields. it's the table USER, GROUPS and
> MEDICIANL DEVICE.
> In short relatons are: ser s
The database table names ought to be plural, viz: MEDICINAL_DEVICES,
USERS etc. Cake is intelligent enough to handle plurals such as
COMPANIES (COMPANY).
In the model definitions, the model will be the capitalised singular
version of the tablename, e.g. User
Foreign keys are singular, e.g. user_
Here are some of the table fields. it's the table USER, GROUPS and MEDICIANL
DEVICE.
In short relatons are: ser should be in one group and have many MedDevice,
group should have one user, medicinal
device should have only one user.
CREATE TABLE IF NOT EXISTS `baza2`.`USER` (
`id` INT NOT NULL
Maybe if you described the tables' fields.. theres gotta be some convention
breaking there
2009/7/16 Zoran Kovac
>
> Hi!
>
> I'm having a dilema, maybe the better word is that I'm puzzled.
>
> The problem is when I'm baking models. The console doesn't detect
> relations between tables automatica
Hi!
I'm having a dilema, maybe the better word is that I'm puzzled.
The problem is when I'm baking models. The console doesn't detect
relations between tables automatically. For instance, the console does
recognize all the tables from the database, but when it's triying to
detect associations it
It works now. :) I removed the bind/unbindModel() calls and replaced
them.
http://bin.cakephp.org/view/38527196
ramonmaruko wrote:
> Removing the bind/unbindModel() 'fixes' the problem. But I think I
> need to have the bind/unbind since the member
> may/may not have a spouse.
>
> On Feb 23, 6:25
Removing the bind/unbindModel() 'fixes' the problem. But I think I
need to have the bind/unbind since the member
may/may not have a spouse.
On Feb 23, 6:25 pm, ramonmaruko wrote:
> What do I need to do so that saveAll() will automatically add the
> correct member_id for this:http://bin.cakephp.o
What do I need to do so that saveAll() will automatically add the
correct member_id for this: http://bin.cakephp.org/view/59481259
I have a EmergencyLoan hasOne Beneficiary which uses saveAll() that
works perfectly. I can't seem to find what's wrong with the Member
hasOne Spouse
--~--~-~-
Hi,
I have a User model, which belongsTo a Group model. When using the
user model itself, I get the correct association data for the Group
model, but when using the Auth component, then I only get the User
model itself in the auth session array, e.g.:
[Auth] => Array
(
[User]
Add var $name = 'User'; & var $name = 'UserProfile'; as properties in
your models and I think you're golden :-)
On May 24, 10:19 am, francky06l <[EMAIL PROTECTED]> wrote:
> Can you pass your model definition code ?
> I have the same kind of plugin and not much problems, maybe I declare
> the asso
Can you pass your model definition code ?
I have the same kind of plugin and not much problems, maybe I declare
the association in different way.
I set the plugin name into the className parameter ie :
belongTo => array('Profile' => array('className' =>
'user.Profile')
Wich cake version are
On May 23, 2:49 pm, francky06l <[EMAIL PROTECTED]> wrote:
> If the user model is in the plugin it should not a problem.. Maybe the
> problem is how you call the find and from where ?
I do the find in the UsersController::read() function. It seems to me
that it is a problem with the association b
If the user model is in the plugin it should not a problem.. Maybe the
problem is how you call the find and from where ?
>The problem is when I try to find the user. In my model association I
>have to have:
I guess this is when you try to find user from the application and not
the plugin ? Mayb
Hi great coders,
I am having a problem trying to get my model associations in a
plugin to come through.
I have a plugin called users and I have a users_controller and a
user_profiles_controller and thier associated models. Between these
two models, I have them associated as, user has o
I think I'm confusing myself. I've read several posts, but haven't
got the right solution.
I have a model called Properties that facilitates the addition,
deletion, or editing of a property.
Each property has 300 questions tied to it.
These question answers (boolean true/false) are found in th
Thank you all!
the `s` wasn't there, it is true :(
I hate when tthis happen
Thanks
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
Perhaps try:
var $belongsTo = array(
(Note the 's' in there!)
Mauro wrote:
> Hi,
> I am having some problems with belongTo,
> here is my code:
>
> Model:
>
>class Document extends AppModel
> {
>
> var $belongTo= array(
>
> 'Recorder' =>
>
Maybe set DEBUG to 2 and look at the SQL being generated.
Does
$this->Document->findById(1)
return the same thing?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send ema
Hi,
I am having some problems with belongTo,
here is my code:
Model:
array('className'=> 'Recorder',
'conditions' => '',
'order'=> '',
'dependent'=> true,
Hi!
Im in quite a fix.
I have created 2 tables as of now
users
username,id,password,name,type(owner/incharge/both),email
Primary key -> id
equipment
type,equipmentno,owner,incharge,dateofpurchase
Primary key -> equipmentno
Foreign Keys -> owner and incharge.
The User hasMany Equipment.Equipment ca
sweet, THANK YOU! :)
On Feb 17, 6:59 pm, "Grant Cox" <[EMAIL PROTECTED]> wrote:
> Change your Intinerary's Event association to
>
> var $hasMany = array('Event' => array('className'=> 'Event') );
>
> in your itineraries/view action, have something like
>
> function view($id) {
> $this
Change your Intinerary's Event association to
var $hasMany = array('Event' => array('className'=> 'Event') );
in your itineraries/view action, have something like
function view($id) {
$this->Itinerary->recursive = 1;
$itinerary = $this->Itinerary->read(null, $id);
$t
I have tried to read the manual and look at examples but I am having a
hard time with associations.
For one, I have a three tables. Trips, Itineraries, Events
Each has one Itinerary, Each Itinerary has many events.
What i really want right now is to connect my Itineraries to Events,
Currently w
On Jan 9, 2007, at 12:48 PM, Alessandro Nuzzo wrote:
>
> I have some problems to understand the association.
> For example, I have a model 'User' and model 'Address'.
>
> User:
> - id
> - bla bla bla
> - office_address : int -> address.id
> - home_address : int -> address.id
Stick this in y
Here is an example from a project I have that is similar
Model JobMaterial
var $belongsTo = array(
'Client'=>
array('className'=>'Client','foreignKey'=>'client_id'),
'Photographer' =>
array('className'=>'Client','foreign
I have some problems to understand the association.
For example, I have a model 'User' and model 'Address'.
User:
- id
- bla bla bla
- office_address : int -> address.id
- home_address : int -> address.id
How can I define association between this 2 models?
Thanks a lot!
--~--~-~--~
32 matches
Mail list logo