summaryrefslogtreecommitdiff
path: root/BitDbAdodb.php
AgeCommit message (Collapse)AuthorFilesLines
2021-02-02move _inc and _lib to includes/ and use PKG_INCLUDE_PATH constantsmodela bitweaver1-687/+0
2021-01-28fix last commit to replace eachspiderr1-2/+3
2021-01-28PHP7 remove each callspiderr1-2/+1
2017-06-19default ADODB cache in sys_get_temp_dirspider@app21-1/+1
2017-01-10Merge branch 'master' of github.com:bitweaver/kernelspider@app11-11/+11
2016-06-24Rename constructor for PHP7 compliancelsces1-1/+1
2016-02-17typo, fix pValues param in BitDbAdodbturon1-5/+5
2016-02-17make BitDbAdodb calls consistent with ADODB classturon1-9/+9
2016-02-07Switch to EXTRNAL_LIBS in their own directory away from the site specific ↵lsces1-1/+1
CONFIG data
2014-05-01Merge branch 'master' of github.com:bitweaver/kernelsanto spider1-12/+1
2014-05-01add is_object check for Trans methods in BitDbAdodbsanto spider1-2/+2
2013-05-07move adodb to config/externals/adodbspiderr1-12/+1
2012-07-26strip ticks for MetaColumns and MetaIndexesspiderr1-0/+2
2012-05-06replace all PHP4 style constructors with __construct; replace calls to base ↵spiderr1-1/+1
class constructors with parent::__construct()
2012-04-16Add externals directory to tidy library supportLester Caine ext:(%22)1-1/+4
2011-07-05first pass at bit_error_handler customize error_handler that will email ↵Christian Fowler1-1/+1
errors if ERROR_EMAIL is defined in config_inc, still logs error as well; add bit_shutdown_handler to catch parse errors in the bit_error_handler
2010-06-09Strip down CVS keywords.cvs2git1-1/+1
2009-10-01remove ref to non-existant copyright.txt filewjames51-2/+2
2009-10-01fix LGPL license ref from non-existant license.txt file to lgpl urlwjames51-2/+2
2009-09-02call parent::debug so member vars get properly initializedChristian Fowler1-1/+2
2008-12-11Portable RANDOM() function for all databases using Adodb's implementation. ↵Tomasz Kalkosinski1-1/+11
Fixes 2028843 too.
2008-11-18Use AdoDb's substr property for getting SUBSTRING function for appropiate ↵Tomasz Kalkosinski1-1/+9
database. Fixes 2021327.
2008-11-08typo assigning mNameChristian Fowler1-2/+2
2008-11-06Add parameter hash to constructor to all creating multipl BitDbAdodb objects ↵Christian Fowler1-11/+19
as necessary
2008-06-06code nicificationMax Kremmel1-292/+284
2008-03-29use STORAGE_PKG_URI for liberty_fetch_thumbnailsChristian Fowler1-3/+2
2007-12-05Add missing DropSequence method so we can recreate sequences properly. ↵MW1-11/+23
Needed on R1 to R2 upgrade. Plus initial improved support for InnoDB
2007-11-22the constant ADODB_FORCE_NULLS is obsolete since 4.52 and is ignored. Set ↵MW1-5/+4
$ADODB_FORCE_TYPE = ADODB_FORCE_NULL for equivalent behaviour.
2007-06-08add empty gBitDb check in case things are really bad during error reportChristian Fowler1-2/+2
2007-03-26change bit_log_error into bit_display_error for displaying of catasrophic ↵Christian Fowler1-2/+2
errors, change bit_log_error into a silent logging to error_log for non fatal issues
2007-02-28clean up preflight, comment out unused functions, use underscores for ↵Max Kremmel1-2/+2
functions not in classes
2006-10-13phpDoc correctionsLester Caine1-3/+5
2006-06-10fix path to adodb include fileMax Kremmel1-2/+3
2006-06-08make sure you can use your own adodb install if you want - need to include ↵Max Kremmel1-7/+9
it in your php's include_path
2006-05-02get debug for adodb working againMax Kremmel1-3/+4
2006-03-20cleanup, genericize ADODB like debug output, add timing infoChristian Fowler1-1/+8
2006-03-14Added optional argument to GenID() to allow for sequences that don't start ↵Wakeworks1-3/+9
with the BIT_DB_PREFIX.
2006-03-01move BitSystem:: preferences methods to get/set/load/storeConfig to avoid ↵Christian Fowler1-9/+9
conflict with new content preferences
2006-02-26move error checking code down to bit_error_inc so errors are logged no ↵Christian Fowler1-32/+26
matter what is defined.
2006-02-25Fix ADODB Query Caching callsJams H Thompson1-18/+35
2006-02-22force oci8po driver if oci8 is specifiedChristian Fowler1-1/+4
2006-02-17change SQL reserved word 'rows' to 'module_rows', clean up codeChristian Fowler1-4/+1
2006-02-17Remove ADODB_CASE_ASSOC - this has been fixed in the sybase driverLester Caine1-5/+2
2006-02-17fix oci8po query conversion and handling of getLayout so oci8 and oci8po can ↵Christian Fowler1-4/+3
both be used
2006-02-15add oci8po as an optionChristian Fowler1-1/+2
2006-02-01detikify libertyMax Kremmel1-2/+2
2006-01-31improve interoperability for Pear and ADODB to exist simultaneously as ↵pre_table_detikificationChristian Fowler1-2/+32
different objects to different places
2006-01-26fix and clean up error reportingMax Kremmel1-29/+32
2006-01-26typoMax Kremmel1-10/+8
2006-01-25Added uspport for multiple database backend support. This necessitates ↵Christian Fowler1-0/+606
removal of all use of ->EOF and ->fields on the result sets. Also, queries that snag a single row and then use $rs->fields should revert to the simpler getRow() funciton in the BitDb classes. BitDb.php was broken into kernel/BitDbBase.php and kernel/BitDbAdodb.php. kernel/BitDbPear.php was added wiht functionality for Pear::DB Also, the bitweavercore cvs module now works. So you can install a total barebones bitweaver - even without the wiki package. The main fix was to insure pageExists was only executing if wiki package was active so it would not select from non-existant tables