summaryrefslogtreecommitdiff
path: root/ext/dba/dba_flatfile.c
Commit message (Collapse)AuthorAgeFilesLines
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* - This is PHP 6 - if this ... ever gets outMarcus Boerger2009-03-101-1/+1
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* Centralize ability to drop APPEND flag. This probably fixes some ini fileMarcus Boerger2003-12-181-19/+0
| | | | | issues.
* Fix warningsMarcus Boerger2003-12-171-1/+4
|
* Fix winbuildMarcus Boerger2003-12-161-0/+5
|
* - Fix Bug #26304 Unexpected data loss when opening dba fileMarcus Boerger2003-12-141-0/+11
| | | | | - Correct handling for flatfile handler
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* wsMarcus Boerger2003-02-261-11/+19
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Add info function to handlers and return handler info when dba_handlers isMarcus Boerger2002-12-301-0/+5
| | | | | called with optional parameter full_info set true.
* -Fix memory handling of persistent dba connections.Marcus Boerger2002-12-201-2/+2
| | | | | | -Update tests. # cdb and flatfile still FAIL for dba_popen since the known streams problem
* Added support for bundled flatfile, cdb and cdb_make handlersEdin Kadribasic2002-11-131-0/+2
| | | | | to win32 build of the dba extension.
* -Centralise open stream for builtin modules that use streamsMarcus Boerger2002-11-101-30/+1
| | | | | -If locks work on database file then only one stream open call is used
* -lock support moved from dba_flatfile.c to dba.cMarcus Boerger2002-11-081-78/+0
| | | | | | | | | -flatfile, cdb, cdb_make use locking now #locking is blocking per default use 'rt', 'wt', ct' or 'nt' for non blocking alias #test access to a database file. #locking uses flock() which will be emulated or warned if that is not eally #possible in ext/standard/flock_compat.c
* not needed anywhere hereMarcus Boerger2002-11-071-8/+0
|
* -rename anything to flatfile_xxx/FLATFILE_xxxMarcus Boerger2002-11-071-25/+32
| | | | | | -fix update function -add warnings for update function
* emalloc never returns 0, so we can simplify the code paths.Sascha Schumann2002-11-061-5/+2
| | | | | also replace ecalloc with emalloc+memset, so that the latter can be inlined.
* fix locks and readingMarcus Boerger2002-11-061-4/+4
| | | | | #i will extend the tests to guard on such failures
* Use the the name 'flatfile' correctly so the handler support can be built now.Marcus Boerger2002-11-061-0/+284
#I do not like the lock solution since a crashed php would leave the *lck #file locked now.