Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8593233
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T23:56:32+00:00 2026-06-11T23:56:32+00:00

I have a strange issues when i want to persist entity which holds reference

  • 0

I have a strange issues when i want to persist entity which holds reference to itself.

DB:

Table PROJECT has Column PARENT_ID which holds references to itself.

Model:

/**
 * @OneToOne(targetEntity="Model_Name")
 * @JoinColumn(name="PARENT_ID", referencedColumnName="ID")
 **/

protected $_parentId;

Code:

$project->setParentId(int);

After setting PARENT_ID i persist entity, and all data except PARENT_ID are stored inside DB.

EDIT

Id field/column

/**
 * @Id
 * @Column(type="integer", name="ID")
 * @GeneratedValue(strategy="IDENTITY")
 */
protected $_id;

/**
 * @return int
 */
public function getParentId()
{
    return $this->_parentId;
}

/**
 * @param  int $parentProjectId
 * @return Application_Model_Data_Project $this
 */
public function setParentId($parentId)
{
    $this->_parentId = $parentId;

    return $this;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T23:56:33+00:00Added an answer on June 11, 2026 at 11:56 pm

    Can you post more code? That part looks just fine.

    Here’s a SSCCE of a working self-referencing entity. Maybe that’ll help.

    /**
     * @Entity @Table(name="messages")
     **/
    class Model_Message
    {
        /** 
         * @Id @Column(name="message_id",type="integer") @GeneratedValue 
         **/
        protected $id;
    
        /**
         *@ManyToOne(targetEntity="Model_Message")
         *@JoinColumn(name="parent_id", referencedColumnName="message_id")
         **/
        protected $parentMessage;
    
        /**
         * @OneToMany(targetEntity="Model_Message", mappedBy="parentMessage")
         **/
        protected $replies = array();
    
        [...]
    }
    

    EDIT

    If you want to save a relationship to another object with doctrine, you must save the object, not the id. Which means you have to set the Model_Name object, and not the id (integer) in your variable tagged as a Model_Name (targetEntity). (Doctrine will use the int automatically in the DB).

    See my example above with the ManyToOne.

    /**
     * @OneToOne(targetEntity="Model_Name")
     * @JoinColumn(name="PARENT_ID", referencedColumnName="ID")
     **/
    protected $_parent;
    
    
    [...]
    
    /**
     * @param  Model_Name $parentProject
     * @return Application_Model_Data_Project $this
     */
    public function setParent($parent)
    {
        $this->_parent = $parent;
    
        return $this;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have very strange issues in my application. I added a layout file with
It seems I tend to attract strange issues. This time, I have written a
I have a strange issue that has arisen recently: Whenever I enter text, even
I have a strange issue in phonegap framework. I want to display PDF file
i have 2 issues. my app has a high quality images, and i enabled
I'm having some strange issues building and running a project on another computer. It's
I have a strange issue. I have a table that will show the output
I have some serious (or better say: strange ) issues with the HTTP-header: Content-Encoding.
Hello I have a strange bug, when I want to trigger the orientation change
I have strange MPMoviePlayerController behavior. It don't want to play movies just chosen from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.