使用Eclipse 3.7(Indigo)
我知道有类似的问题(顺便过时)但没有一个可以解决我的问题我去帮助 - >安装新软件 - >使用
并选择
Indigo - http://download.eclipse.org/releases/indigo
它一直在说'等待......'
有任何想法吗??我会非常感激
:d
编辑:顺便说一下,错误日志上没有任何内容
我的这个symfony Recepciones类与Obras_Sociales_Recepciones类有关,因为我的BaseRecepciones类声称:
/* @method Recepciones setRecepcionId() Sets the current record's "recepcion_id" value
* @method Recepciones setCuentaLaboratorioId() Sets the current record's "cuenta_laboratorio_id" value
* @method Recepciones setCuentasLaboratorios() Sets the current record's "Cuentas_Laboratorios" value
* @method Recepciones setObrasSocialesRecepciones() Sets the current record's "Obras_Sociales_Recepciones" collection
*/
abstract class BaseRecepciones extends sfDoctrineRecord
{
public function setTableDefinition()
{
$this->setTableName('Recepciones');
$this->hasColumn('recepcion_id', 'integer', 4, array(
'type' => 'integer',
'fixed' => 0,
'unsigned' => true,
'primary' => true,
'autoincrement' => true,
'length' => 4,
));
$this->hasColumn('cuenta_laboratorio_id', 'integer', 4, …
Run Code Online (Sandbox Code Playgroud)