tangra logo
   
[ class tree: tangra_lib ] [ index: tangra_lib ] [ all elements ]
 

Class: DB_Recordset_Installer

Source Location: /db/db_recordset_installer.class.php

Class DB_Recordset_Installer

Class Overview

Implements interfaces:

This class is ment to be used ONLY by module installers

Located in /db/db_recordset_installer.class.php [line 26]

Tangra_Class
   |
   --DB_Recordset_Installer

Properties

Methods

[ Top ]
Inherited Properties, Constants, and Methods
Inherited Properties Inherited Methods Inherited Constants

Inherited From Tangra_Class

Tangra_Class::get_class_name()
Alias of get_class(). Exist because of historical reasons.
Tangra_Class::__set()
Overides PHP built-in method and just throws exception if called. Purpose - to "forbid" autosetting of nonexisting class properties.

[ Top ]
Property Summary
recordset   $rs   Holds records set

[ Top ]
Method Summary
DB_Recordset_Installer   __construct()   Constructor
void   close()   Closes the recordset
mixed   fetch_object()   Fetches one row as object from recordset
array   fetch_row()   Fetches one row from recordset
boolean   is_eod()   Alias of is_eof()
boolean   is_eof()   Is end of recordset

[ Top ]
Properties
recordset   $rs [line 33]

Holds records set

API Tags:
Internal:  
Access:  private


[ Top ]
Methods
Constructor __construct  [line 40]

  DB_Recordset_Installer __construct( &$rs, ADORecordSet $rs  )

Constructor

Parameters:
ADORecordSet   $rs: 
   &$rs: 


[ Top ]
close  [line 99]

  void close( )

Closes the recordset


API Tags:
Access:  public


Implementation of:
I_DB_Recordset::close()
Closes recordeset

[ Top ]
fetch_object  [line 66]

  mixed fetch_object( )

Fetches one row as object from recordset


API Tags:
Access:  public


Implementation of:
I_DB_Recordset::fetch_object()
Fetches data as object

[ Top ]
fetch_row  [line 52]

  array fetch_row( )

Fetches one row from recordset


API Tags:
Access:  public


Implementation of:
I_DB_Recordset::fetch_row()
Fetches row as array

[ Top ]
is_eod  [line 90]

  boolean is_eod( )

Alias of is_eof()


API Tags:
Return:  Returns true if there are no rows in the recordset (or it is empty)
Access:  public


Implementation of:
I_DB_Recordset::is_eod()
Alias of is_eof()

[ Top ]
is_eof  [line 80]

  boolean is_eof( )

Is end of recordset


API Tags:
Return:  Returns true if there are no rows in the recordset (or it is empty)
Access:  public


Implementation of:
I_DB_Recordset::is_eof()
Is end of file/data

[ Top ]