Documentation TYPO3 par Ameos |
Public Member Functions | |
| ADODB_oracle () | |
| DBDate ($d) | |
| DBTimeStamp ($ts) | |
| BindDate ($d) | |
| BindTimeStamp ($d) | |
| BeginTrans () | |
| CommitTrans ($ok=true) | |
| RollbackTrans () | |
| ErrorMsg () | |
| ErrorNo () | |
| _connect ($argHostname, $argUsername, $argPassword, $argDatabasename, $mode=0) | |
| _pconnect ($argHostname, $argUsername, $argPassword, $argDatabasename) | |
| _query ($sql, $inputarr=false) | |
| _close () | |
Public Attributes | |
| $databaseType = "oracle" | |
| $replaceQuote = "''" | |
| string that represents FALSE for a database | |
| $concat_operator = '||' | |
| maximum size of blobs or large text fields (262144 = 256K)-- some db's die otherwise like foxpro | |
| $_curs | |
| $_initdate = true | |
| $metaTablesSQL = 'select table_name from cat' | |
| $metaColumnsSQL = "select cname,coltype,width from col where tname='%s' order by colno" | |
| $sysDate = "TO_DATE(TO_CHAR(SYSDATE,'YYYY-MM-DD'),'YYYY-MM-DD')" | |
| Use 'true' to store the item compressed (uses zlib). | |
| $sysTimeStamp = 'SYSDATE' | |
| name of function that returns the current date | |
| $connectSID = true | |
Definition at line 18 of file adodb-oracle.inc.php.
| ADODB_oracle::DBDate | ( | $ | d | ) |
Converts a date "d" to a string that the database can understand.
| d | a date in Unix date time format. |
Reimplemented from ADOConnection.
Definition at line 35 of file adodb-oracle.inc.php.
References ADORecordSet::UnixDate().
| ADODB_oracle::DBTimeStamp | ( | $ | ts | ) |
Converts a timestamp "ts" to a string that the database can understand.
| ts | a timestamp in Unix date time format. |
Reimplemented from ADOConnection.
Definition at line 42 of file adodb-oracle.inc.php.
References ADORecordSet::UnixTimeStamp().
| ADODB_oracle::BeginTrans | ( | ) |
Begin a Transaction. Must be followed by CommitTrans() or RollbackTrans().
Reimplemented from ADOConnection.
Definition at line 68 of file adodb-oracle.inc.php.
| ADODB_oracle::CommitTrans | ( | $ | ok = true |
) |
If database does not support transactions, always return true as data always commited
| $ok | set to false to rollback transaction, true to commit |
Reimplemented from ADOConnection.
Definition at line 76 of file adodb-oracle.inc.php.
References RollbackTrans().
| ADODB_oracle::RollbackTrans | ( | ) |
If database does not support transactions, rollbacks always fail, so return false
Reimplemented from ADOConnection.
Definition at line 85 of file adodb-oracle.inc.php.
Referenced by CommitTrans().
| ADODB_oracle::ErrorMsg | ( | ) |
Reimplemented from ADOConnection.
Definition at line 94 of file adodb-oracle.inc.php.
| ADODB_oracle::ErrorNo | ( | ) |
Reimplemented from ADOConnection.
Definition at line 104 of file adodb-oracle.inc.php.
1.4.6