[phpMP-CVS] CVS: phpMP/dba mysql.dba,1.19,1.20
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2002-12-01 03:47:24
|
Update of /cvsroot/phpmp/phpMP/dba In directory sc8-pr-cvs1:/tmp/cvs-serv23442/dba Modified Files: mysql.dba Log Message: Realized after an hour of long, torturous thought that the constants file wouldn't work as laid out. Made a few other small updates as well. Screwed with the other files randomly to get everything working alright. Index: mysql.dba =================================================================== RCS file: /cvsroot/phpmp/phpMP/dba/mysql.dba,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** mysql.dba 30 Nov 2002 23:40:09 -0000 1.19 --- mysql.dba 1 Dec 2002 03:47:21 -0000 1.20 *************** *** 7,11 **** var $connected; ! connect () { if ( empty ($this->ident_link) ) --- 7,11 ---- var $connected; ! function connect () { if ( empty ($this->ident_link) ) *************** *** 32,36 **** } ! close () { if ( $this->ident_link != 0 ) --- 32,36 ---- } ! function close () { if ( $this->ident_link != 0 ) *************** *** 47,51 **** } ! query ( $qry ) { if ( $this->ident_link == 0 ) --- 47,51 ---- } ! function query ( $qry ) { if ( $this->ident_link == 0 ) *************** *** 160,162 **** } ! ?> --- 160,162 ---- } ! ?> \ No newline at end of file |