Changeset 274 for trunk

Show
Ignore:
Timestamp:
01/21/07 22:37:48 (5 years ago)
Author:
john
Message:

added schema_search_path to AR for postgres schemas

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/trax/vendor/trax/active_record.php

    r273 r274  
    25362536                    # Set the schema search path to a string of comma-separated schema names. 
    25372537                    # First strip out all the whitespace 
    2538                     self::$connection->query('SET search_path TO '.preg_replace('/\s+/', '', $connection_settings['schema_search_path'])); 
     2538                    $connection->query('SET search_path TO '.preg_replace('/\s+/', '', $connection_settings['schema_search_path'])); 
    25392539                } 
    25402540            }