Update of /cvsroot/phpweather/phpweather
In directory usw-pr-cvs1:/tmp/cvs-serv2956

Modified Files:
        db_layer.php 
Log Message:
Added the DBA database object to the list of available database types.


Index: db_layer.php
===================================================================
RCS file: /cvsroot/phpweather/phpweather/db_layer.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- db_layer.php        2001/03/25 08:48:52     1.3
+++ db_layer.php        2001/04/02 19:32:28     1.4
@@ -52,6 +52,10 @@
       $this->db = new db_pgsql($this->properties);
       $this->properties['db_type'] = $type;
       break;
+    case 'dba':
+      $this->db = new db_dba($this->properties);
+      $this->properties['db_type'] = $type;
+      break;
     default:
       $this->error('db_type not recognized: <code>' . $this->properties['db_type'] . 
'</code>, using default: ' . $this->defaults['db_type'] . '</code>.');
       $this->set_db_type($this->defaults['db_type']);


_______________________________________________
PHPWeather-checkins mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/phpweather-checkins

Reply via email to