Changeset 4953

Show
Ignore:
Timestamp:
09/12/08 17:57:20 (10 months ago)
Author:
jwage
Message:

fixes #1446

Location:
branches/1.0/docs/manual
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/docs/manual/de/improving-performance/fetch-only-what-you-need.txt

    r4674 r4953  
    3434logic in the view, are you? One parameter can save you a lot of unnecessary processing: 
    3535<code type="php"> 
    36  ... ->execute(array(1), Doctrine::FETCH_ARRAY); 
     36 ... ->execute(array(1), Doctrine::HYDRATE_ARRAY); 
    3737</code> This will return a bunch of nested php arrays. It could look something like this, assuming we fetched some comments: 
    3838<code> 
  • branches/1.0/docs/manual/en/improving-performance/fetch-only-what-you-need.txt

    r4674 r4953  
    3434logic in the view, are you? One parameter can save you a lot of unnecessary processing: 
    3535<code type="php"> 
    36  ... ->execute(array(1), Doctrine::FETCH_ARRAY); 
     36 ... ->execute(array(1), Doctrine::HYDRATE_ARRAY); 
    3737</code> This will return a bunch of nested php arrays. It could look something like this, assuming we fetched some comments: 
    3838<code> 
  • branches/1.0/docs/manual/ja/improving-performance.txt

    r4674 r4953  
    4343 
    4444<code type="php"> 
    45  ... ->execute(array(1), Doctrine::FETCH_ARRAY); 
     45 ... ->execute(array(1), Doctrine::HYDRATE_ARRAY); 
    4646</code>  
    4747これは一連の入れ子のPHP配列を返します。いくつかのコメントを取得したことを前提とすると、次のようになります: 
  • branches/1.0/docs/manual/pt_BR/improving-performance/fetch-only-what-you-need.txt

    r4674 r4953  
    3434logic in the view, are you? One parameter can save you a lot of unnecessary processing: 
    3535<code type="php"> 
    36  ... ->execute(array(1), Doctrine::FETCH_ARRAY); 
     36 ... ->execute(array(1), Doctrine::HYDRATE_ARRAY); 
    3737</code> This will return a bunch of nested php arrays. It could look something like this, assuming we fetched some comments: 
    3838<code>