"TYPO3 4.0.1: ADODB_odbc Class Reference", "datetime" => "Sat Dec 2 19:23:27 2006", "date" => "2 Dec 2006", "doxygenversion" => "1.4.6", "projectname" => "TYPO3 4.0.1", "projectnumber" => "4.0.1" ); get_header($doxygen_vars); ?>

ADODB_odbc Class Reference

Inheritance diagram for ADODB_odbc:

Inheritance graph
[legend]
Collaboration diagram for ADODB_odbc:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 ADODB_odbc ()
 _connect ($argDSN, $argUsername, $argPassword, $argDatabasename)
 _pconnect ($argDSN, $argUsername, $argPassword, $argDatabasename)
 ServerInfo ()
 CreateSequence ($seqname='adodbseq', $start=1)
 DropSequence ($seqname)
 GenID ($seq='adodbseq', $start=1)
 ErrorMsg ()
 ErrorNo ()
 BeginTrans ()
 CommitTrans ($ok=true)
 RollbackTrans ()
 MetaPrimaryKeys ($table)
MetaTables ($ttype=false)
 ODBCTypes ($t)
MetaColumns ($table)
 Prepare ($sql)
 _query ($sql, $inputarr=false)
 UpdateBlob ($table, $column, $val, $where, $blobtype='BLOB')
 _close ()
 _affectedrows ()

Public Attributes

 $databaseType = "odbc"
 $fmtDate = "'Y-m-d'"
 uppercase function
 $fmtTimeStamp = "'Y-m-d, h:i:sA'"
 used by DBDate() as the default date format used by the database
 $replaceQuote = "''"
 string that represents FALSE for a database
 $dataProvider = "odbc"
 $hasAffectedRows = true
 supports autoincrement ID?
 $binmode = ODBC_BINMODE_RETURN
 $useFetchArray = false
 $_bindInputArray = false
 A boolean variable to state whether its a persistent connection or normal connection. */.
 $curmode = SQL_CUR_USE_DRIVER
 $_genSeqSQL = "create table %s (id integer)"
 $_autocommit = true
 $_haserrorfunctions = true
 $_has_stupid_odbc_fetch_api_change = true
 $_lastAffectedRows = 0
 $uCaseTables = true
 $_dropSeqSQL = 'drop table %s'

Detailed Description

Definition at line 22 of file adodb-odbc.inc.php.


Member Function Documentation

ADODB_odbc::BeginTrans  ) 
 

Begin a Transaction. Must be followed by CommitTrans() or RollbackTrans().

Returns:
true if succeeded or false if database does not support transactions

Reimplemented from ADOConnection.

Reimplemented in ADODB_access, and ADODB_vfp.

Definition at line 203 of file adodb-odbc.inc.php.

Referenced by ADODB_ODBC_DB2::RowLock().

ADODB_odbc::CommitTrans ok = true  ) 
 

If database does not support transactions, always return true as data always commited

Parameters:
$ok set to false to rollback transaction, true to commit
Returns:
true/false.

Reimplemented from ADOConnection.

Definition at line 212 of file adodb-odbc.inc.php.

References RollbackTrans().

ADODB_odbc::ErrorMsg  ) 
 

Returns:
the last error message

Reimplemented from ADOConnection.

Definition at line 173 of file adodb-odbc.inc.php.

References ADOConnection::ErrorMsg().

ADODB_odbc::ErrorNo  ) 
 

Returns:
the last error number. Normally 0 means no error.

Reimplemented from ADOConnection.

Definition at line 182 of file adodb-odbc.inc.php.

References ADOConnection::ErrorNo().

ADODB_odbc::GenID seq = 'adodbseq',
start = 1
 

Generates a sequence id and stores it in $this->genID; GenID is only available if $this->hasGenID = true;

Parameters:
seqname name of sequence to use
startID if sequence does not exist, start at this ID
Returns:
0 if not supported, otherwise a sequence id

Reimplemented from ADOConnection.

Definition at line 143 of file adodb-odbc.inc.php.

References ADOConnection::Execute(), and ADOConnection::GetOne().

ADODB_odbc::Prepare sql  ) 
 

Should prepare the sql statement and return the stmt resource. For databases that do not support this, we return the $sql. To ensure compatibility with databases that do not support prepare:

$stmt = $db->Prepare("insert into table (id, name) values (?,?)"); $db->Execute($stmt,array(1,'Jill')) or die('insert failed'); $db->Execute($stmt,array(2,'Joe')) or die('insert failed');

Parameters:
sql SQL to send to database
Returns:
return FALSE, or the prepared statement, or the original sql if if the database does not support prepare.

Reimplemented from ADOConnection.

Definition at line 480 of file adodb-odbc.inc.php.

ADODB_odbc::RollbackTrans  ) 
 

If database does not support transactions, rollbacks always fail, so return false

Returns:
true/false.

Reimplemented from ADOConnection.

Definition at line 223 of file adodb-odbc.inc.php.

Referenced by CommitTrans().

ADODB_odbc::ServerInfo  ) 
 

Get server version info...

Returns:
An array with 2 elements: $arr['string'] is the description string, and $arr[version] is the version (also a string).

Reimplemented from ADOConnection.

Reimplemented in ADODB_ODBC_DB2, ADODB_odbc_mssql, and ADODB_SAPDB.

Definition at line 91 of file adodb-odbc.inc.php.

References ADOConnection::ServerInfo().

Referenced by ADODB_SAPDB::ServerInfo().

ADODB_odbc::UpdateBlob table,
column,
val,
where,
blobtype = 'BLOB'
 

Update a blob column, given a where clause. There are more sophisticated blob handling functions that we could have implemented, but all require a very complex API. Instead we have chosen something that is extremely simple to understand and use.

Note: $blobtype supports 'BLOB' and 'CLOB', default is BLOB of course.

Usage to update a $blobvalue which has a primary key blob_id=1 into a field blobtable.blobcolumn:

UpdateBlob('blobtable', 'blobcolumn', $blobvalue, 'blob_id=1');

Insert example:

$conn->Execute('INSERT INTO blobtable (id, blobcol) VALUES (1, null)'); $conn->UpdateBlob('blobtable','blobcol',$blob,'id=1');

Reimplemented from ADOConnection.

Definition at line 577 of file adodb-odbc.inc.php.


The documentation for this class was generated from the following file: