Project Pages

PHP Classes
SourceForge
Downloads
Archived Documentation

DB Connection Methods

objSQL
obj_close

Error Handling Methods

obj_error
obj_error_message

Statement Methods

obj_delete
obj_insert
obj_paging
obj_query
obj_select
obj_update

Statement Argument Methods

obj_cols
obj_data
obj_limit
obj_offset
obj_order_by
obj_sort_order
obj_table

Resultset Methods

obj_affected_rows
obj_fetch_assoc
obj_fetch_num
obj_fetch_object
obj_field
obj_free_result
obj_num_fields
obj_num_rows

Prepared Statement Methods

obj_bind
obj_close_statement
obj_execute
obj_free_statement
obj_prepare_statement

Transaction Methods

obj_commit
obj_rollback
obj_savepoint
obj_transaction

Utility Methods

obj_escape
obj_info
obj_row_count


obj_where

Description:

Sets the where argument for the obj_select, obj_delete, obj_update, obj_row_count and obj_paging methods and is called directly from the objSQL class.

  • The where argument is required.

Parameters:

void obj_where ( str where )


Example:

<?php  

try  
{  
    
$dbh->obj_table"mytable" );   
    
$dbh->obj_where"prod_id=1234" ); 
     
    
$rs $dbh->obj_delete();  
      
    if ( 
$dbh->obj_error() )  
        throw new 
Exception$dbh->obj_error_message() );  
          
    echo 
$rs->obj_affected_rows();  
      
}  
catch ( 
Exception $e )   
{  
    
//log error and/or redirect user to error page  
}   

?>

See also: obj_cols, obj_data, obj_limit, obj_offset, obj_order_by, obj_sort_order, obj_table