DatabaseConfig.php 526 B

123456789101112131415161718192021
  1. <?php
  2. /** @package verysimple::DB::DataDriver */
  3. /**
  4. * A static class that holds global database configuration options.
  5. *
  6. * @package verysimple::DB::DataDriver
  7. * @author VerySimple Inc. <[email protected]>
  8. * @copyright 1997-2010 VerySimple Inc.
  9. * @license http://www.gnu.org/licenses/lgpl.html LGPL
  10. * @version 1.0
  11. */
  12. class DatabaseConfig
  13. {
  14. /** @var boolean set to true to convert NULL values to empty string when inserting/updating */
  15. public static $CONVERT_NULL_TO_EMPTYSTRING = true;
  16. }
  17. ?>