Tim
Tim

Reputation: 982

Doctrine ORM - PHP - Zero Returned Values

I had doctrine and ORM working very well together.

Then I removed three rows from my MySQL db and removed those values from my model. Now doctrine returns absolutely nothing. Not even a NULL value from the function or an error.

I'm wondering if doctrine caches my schema somewhere or if I'm missing something

Upvotes: 0

Views: 196

Answers (1)

prodigitalson
prodigitalson

Reputation: 60413

Well if you removed the rows (ie data from the table) then you wouldnt get anything returned as ther eis no data to return. If you mean you removed/modfied the table(s) structure then you need to rebuild your model.

Upvotes: 1

Related Questions