PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

सिद्धांत 2, सिम्फनी 2 और पोस्टग्रेस्क्ल संस्थाओं के साथ मामला

इसे आजमाएं

namespace MyB\Entity;

/**
 * MyB\Entity\Brand
 *
 * @orm:Table(name="""Main"".""Brand""")
 * @orm:Entity
 */
class Brand
{
    /**
     * @var integer $brandid
     *
     * @orm:Column(name="""BrandId""", type="integer", nullable=false)
     * @orm:Id
     * @orm:GeneratedValue(strategy="SEQUENCE")
     * @orm:SequenceGenerator(sequenceName="""Main"".""Brand_BrandId_seq""", allocationSize="1", initialValue="1")
     */
    private $brandid;

    /**
     * @var string $brandname
     *
     * @orm:Column(name="""BrandName""", type="string", length=32, nullable=false)
     */
    private $brandname;

    /**
     * Set name.
     *
     * @param string $name
     */
    public function setName($name) {
        $this->brandname = $name;
    }
}

पोस्टग्रेज में हर शब्द केस संवेदनशील बच जाना चाहिए।



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. नया डेटा Postgres पर रेल सरणी स्तंभ के लिए जारी नहीं है

  2. रेल 4/पोस्टग्रेज में मेरे सभी टेबल 1 के आयाम के साथ क्यों बनाए जा रहे हैं?

  3. Play 2.0 के लिए PostgreSQL कैसे सेट करें?

  4. मौजूदा PostgreSQL डेटाबेस पर TimescaleDB को कैसे सक्षम करें

  5. चयन के लिए लॉक करें ताकि दूसरी प्रक्रिया को पुराना डेटा न मिले