Questions tagged [propel]

Propel is an open-source object-relational mapping (ORM) for PHP 5. It allows you to access your database using a set of objects, providing a simple API for storing and retrieving data. There are two major versions, 1 and 2.

Propel is an open-source object-relational mapping (ORM) for PHP 5.

It allows you to access the records in your database using a set of OOP objects, providing a simple API for basic CRUD operations. To accomplish this, Propel ORM includes a generator component which uses source code generation to build PHP classes based on a data model definition written in XML (or reverse-engineered from an existing database).

Propel also includes a runtime component which manages connections, transactions, and any idiosyncratic rules that describe the workings of the RDBMS being used with Propel.

In addition to being open source, the code as implemented in a project is extendable with behaviors which alter the generated class structure and by working with the one-time generated model classes themselves which extend the base Active Record classes.

It is also an integral part of the PHP framework Symfony and was the default ORM up to and including version 1.2.


Documentation:

1161 questions
-2
votes
3 answers

Deleting queries in mySQL

Reading the bottom of the documentation, specifically: "You can still retrieve properties of deleted objects, but you cannot save deleted objects." How? Is it only if you enable a setting?
Andrew
  • 3,650
  • 9
  • 31
  • 32
-2
votes
1 answer

Symfony 3.4 + Propel configuration Error

I have install sysmfony 3.4 and try to setup propel and get below error. below is my composer.json file "require": { "php": ">=5.5.9", "symfony/symfony": "3.4.*", "doctrine/orm": "^2.5", "doctrine/doctrine-bundle":…
-2
votes
2 answers

Symfony\Console DialogHelper not found, when running `propel init`

I'm getting this error, when running php propel init: $ php propel init Fatal error: Class 'Symfony\Component\Console\Helper\DialogHelper' not found in…
Nicolas
  • 21
-2
votes
1 answer

Propel generates 0 instead of false

I have a problem with my project and propel orm. When I use find() propel generate a query with 0 instead of false and my postgres give me an exception. Example: ...WHERE documento.DOCUMENTO_ELIMINADO=0... I hope you can help me please. Thanks.
-4
votes
3 answers

How towork with propelorm

I am new to propel,any one can explain me about what is the use of it and how to integrate any framework with propel?
Sakthi Ganesh
  • 191
  • 1
  • 15
-5
votes
1 answer

I need Propel 1.3.0. From where I can download the same?

I need Propel 1.3.0 for my existing php and mysql versions to create model classes. From where I can download Propel generator 1.3.0? Your help is appreciated Thanks
Prd
  • 1
  • 3
1 2 3
77
78