Sets the table argument for the obj_delete, obj_insert, obj_update, obj_select, obj_row_count and obj_paging methods and is called directly from the objSQL class.
void obj_table ( str table )
<?php 
try 
{ 
    $dbh->obj_table( "mytable" ); 
    $dbh->obj_cols( "color,size,price" );
    $dbh->obj_order_by( "color" );
    
    $rs = $dbh->obj_select(); 
     
    if ( $dbh->obj_error() ) 
        throw new Exception( $dbh->obj_error_message() ); 
         
    while ( $obj = $rs->obj_fetch_object() )  
    { 
        printf ( "%s %s %s \n", $obj->color,  
                                $obj->size,  
                                $obj->price ); 
    } 
     
    $rs->obj_free_result(); 
} 
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_where