Changeset 10011

Show
Ignore:
Timestamp:
11/27/08 20:00:25 (1 month ago)
Author:
afz
Message:

fix No capital letters in DB Name

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jaws/html/include/Jaws/DB.php

    r9400 r10011  
    104104            'debug' => true, 
    105105            'debug_handler' => 'logQuery', 
    106             'portability' => (MDB2_PORTABILITY_ALL ^ MDB2_PORTABILITY_EMPTY_TO_NULL), 
     106            'portability' => (MDB2_PORTABILITY_ALL ^ MDB2_PORTABILITY_EMPTY_TO_NULL ^ MDB2_PORTABILITY_FIX_CASE), 
    107107            'quote_identifier' => true, 
    108108            'idxname_format' => '%s_idx', 
     
    418418            'debug' => DEBUG_ACTIVATED, 
    419419            'log_line_break' => '<br />', 
    420             'portability' => (MDB2_PORTABILITY_ALL ^ MDB2_PORTABILITY_EMPTY_TO_NULL), 
     420            'portability' => (MDB2_PORTABILITY_ALL ^ MDB2_PORTABILITY_EMPTY_TO_NULL ^ MDB2_PORTABILITY_FIX_CASE), 
    421421            'quote_identifier' => true 
    422422        ); 
     
    560560            'debug' => $debug, 
    561561            'log_line_break' => '<br />', 
    562             'portability' => (MDB2_PORTABILITY_ALL ^ MDB2_PORTABILITY_EMPTY_TO_NULL), 
     562            'portability' => (MDB2_PORTABILITY_ALL ^ MDB2_PORTABILITY_EMPTY_TO_NULL ^ MDB2_PORTABILITY_FIX_CASE), 
    563563            'quote_identifier' => true, 
    564564            'force_defaults' => false,