Is it possible render partial from database instead of file

Is it possible to render partial from database instead of file?

render :partial => “person” =====> this render from file.

How about partial rendering by injecting string of “rhtml” dynamically
which coming from database?

Thank you in advance,

On 9 Jun 2008, at 13:11, Beta B. wrote:

Is it possible to render partial from database instead of file?

render :partial => “person” =====> this render from file.

Well there’s render :inline which you might be able to bend to your
will.

Fred

Frederick C. wrote:

On 9 Jun 2008, at 13:11, Beta B. wrote:

Is it possible to render partial from database instead of file?

render :partial => “person” =====> this render from file.

Well there’s render :inline which you might be able to bend to your
will.

Fred

Thanks Fred, that’s solve it.

Frederick C. wrote:

On 9 Jun 2008, at 13:11, Beta B. wrote:

Is it possible to render partial from database instead of file?

render :partial => “person” =====> this render from file.

Well there’s render :inline which you might be able to bend to your
will.

Fred

Sorry, another question.

  1. Will render :inline cause performance hit?
  2. Will having a lot of render cause huge performance problem?

thank you in advance