Update of /cvsroot/phpmp/phpMP/dba
In directory sc8-pr-cvs1:/tmp/cvs-serv4663/dba
Modified Files:
mssql.dba mysql.dba
Log Message:
Updating function names.
Index: mssql.dba
===================================================================
RCS file: /cvsroot/phpmp/phpMP/dba/mssql.dba,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** mssql.dba 29 Jun 2003 08:19:55 -0000 1.3
--- mssql.dba 29 Jun 2003 18:33:21 -0000 1.4
***************
*** 86,90 ****
}
! function numRows($qry)
{
if ($this->ident_link == 0)
--- 86,90 ----
}
! function num_rows($qry)
{
if ($this->ident_link == 0)
***************
*** 130,134 ****
}
! function fetchArray($qry)
{
if ($this->ident_link == 0)
--- 130,134 ----
}
! function fetch_array($qry)
{
if ($this->ident_link == 0)
***************
*** 152,156 ****
}
! function fetchRow($qry)
{
if ($this->ident_link == 0)
--- 152,156 ----
}
! function fetch_row($qry)
{
if ($this->ident_link == 0)
***************
*** 174,178 ****
}
! function escapeString($string)
{
if( stripslashes($string) == $string ) // Will be true if no slashes were removed.
--- 174,178 ----
}
! function escape_string($string)
{
if( stripslashes($string) == $string ) // Will be true if no slashes were removed.
Index: mysql.dba
===================================================================
RCS file: /cvsroot/phpmp/phpMP/dba/mysql.dba,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -r1.25 -r1.26
*** mysql.dba 29 Jun 2003 08:19:55 -0000 1.25
--- mysql.dba 29 Jun 2003 18:33:21 -0000 1.26
***************
*** 93,97 ****
}
! function numRows ($query)
{
if ( $this->ident_link == 0 )
--- 93,97 ----
}
! function num_rows ($query)
{
if ( $this->ident_link == 0 )
***************
*** 109,113 ****
}
! function insertID()
{
if($this->ident_link == 0)
--- 109,113 ----
}
! function insert_id()
{
if($this->ident_link == 0)
***************
*** 125,129 ****
}
! function result ( $result, $row=0, $field='' )
{
if($this->ident_link == 0)
--- 125,129 ----
}
! function result( $result, $row=0, $field='' )
{
if($this->ident_link == 0)
***************
*** 140,144 ****
}
! function fetchArray($query)
{
if($this->ident_link == 0)
--- 140,144 ----
}
! function fetch_array($query)
{
if($this->ident_link == 0)
***************
*** 154,158 ****
}
! function fetchAssoc($query)
{
if($this->ident_link == 0)
--- 154,158 ----
}
! function fetch_assoc($query)
{
if($this->ident_link == 0)
***************
*** 168,172 ****
}
! function fetchRow($query)
{
if ( $this->ident_link == 0 )
--- 168,172 ----
}
! function fetch_row($query)
{
if ( $this->ident_link == 0 )
***************
*** 183,187 ****
}
! function affectedRows() {
if($this->ident_link == 0)
{
--- 183,187 ----
}
! function affected_rows() {
if($this->ident_link == 0)
{
|