0
votes
1answer
24 views

TYPO3 mm-Query giving me no output and no error

I've tried to output some data from my two linked tables and had a look at all examples I could find, but I'm still not getting any results. (Note: I've tried exec_SELECTquery on either table and it ...
0
votes
0answers
51 views

Edit first_name data type field in Sugarcrm

There's the first_name data type, accessible from the Studio in SugarCRM. This field comes with a "Mr. Mrs. ..." etc selectable field, then the text field for the actual person name. I need a ...
0
votes
2answers
105 views

relation between categories table and factories table Codeigniter

I am wordking with CodeIgniter I have a database with three tables called categories, factories and factorycategories in my categories table i have the following rows: idCategories Categorie ...
0
votes
1answer
29 views

Doctrine2 Relation with 3 entities

I have 3 entities: User Role Company Typically one User has one Role and many Companies. I have set up this successfully. But how would I set up the relations if a User has a Role depending on the ...
0
votes
4answers
342 views

Laravel Cities relation foreign key

Im really new to laravel, and im sure im doing something wrong I have 2 tables. Cities And users_metadata My cities table look like this id | City | 1 | New York | 1 | Los Angeles | ...
1
vote
2answers
252 views

MySQL dynamic table name relation

I have 3 MySQL tables: cars, users and visitors. Table cars can be related to table users or table visitors. Tables users and visitors have different table structures. I would like to join all these ...
0
votes
1answer
124 views

Post 1:N (one customer many phonenumbers) JSON Array to android and parse it in PHP

I want to create a more complex JSON Array where a customer (which has a name) has many phonenumbers so that i can parse it in PHP and i need your help. i.e.: public Class ContactVO { public ...
3
votes
1answer
299 views

what is the advantage of relationships between tables in sql?

I made three tables. Table1=users.And the column names are userid (auto_increment) and username. Table2=hobbies. column names are hobbyid (auto_increment) and hobbyname. Table3=users_hobbies. column ...
0
votes
1answer
150 views

Yii Framework - Two instances of the same relation

I have a model Animal in Yii which has two relations, mainRace and secondaryRace, both of them being an instance of the Race model. How can this be translated into the relations array of Animal model ...
0
votes
2answers
376 views

CakePHP - How do I link these models together (that requires use of a relation table)?

I'm currently using CakePHP 2.0-RC1. Being pretty nifty and all, I've only come across one challenge that I can't wrap my mind around. I've read the documentation on linking models together ...
3
votes
1answer
2k views

Many to Many, with another column

I'm wondering if anyone has faced this issue. Let's assume I have two tables: products and carts (related many to many). Now, joining table has additional column - amount (how many products of ...
0
votes
3answers
297 views

MySQL relations for country region and town tables

I am trying to figure out the best method to relate country, region and town tables. On my website I want the user to be able to just enter a town. Then optionally country and region, both of which ...
0
votes
1answer
163 views

Zend_Db_Table “where” for relations?

Hello all Is Zend_Db_Table (Zend_Db_Table_*) supports where for related data that defined through $_referenceMap / $_dependentTable As example, i have Blogs (table: blogs) and Regions (table: ...
0
votes
1answer
330 views

Doctrine generate models - problem with relation type

I am trying generate doctrine models from yaml schema I have schema like that: Product: columns: id: type: integer(5) primary: true unsigned: true ...
0
votes
2answers
465 views

how to dump mysql table relations in PHP

I searched a lot but could not find a way to dump table relations like one-to-one, one-to-many vs in PHP. Is there a way to handle this issue in PHP? A result might be: array( 'tableA' => ...
0
votes
2answers
198 views

Retrieving dependent/parent from within domain entity method

How would one go about retrieving a dependent/parent object from an entity. $person->getAddress(); This should retrieve the Address object for that person from the database and return it as an ...