summaryrefslogtreecommitdiff
path: root/databases/adodb/PLIST
AgeCommit message (Collapse)AuthorFilesLines
2009-06-14Remove @dirrm entries from PLISTsjoerg1-11/+1
2007-11-25Update to 4.96aadrianp1-1/+10
Works with both php4 and php5. Postgresql driver's ServerInfo() function now works properly. Added a new session handler, in adodb-session2.php. ADODB_ACTIVE_RECORD, added find() method, and new constructor method ODBC_DB2 driver now works properly New BindDate() and BindTimeStamp() functions in connection object New SetTransactionMode()
2006-03-13Update to 4.80adrianp1-2/+11
> 4.80 8 Mar 2006 > > Added activerecord support. > > Added mysql $conn->compat323 = true if you want MySQL 3.23 compat enabled. Fixes GetOne() Select-Limit problems. > > Added adodb-xmlschema03.inc.php to support XML Schema version 3 and updated adodb-datadict.htm docs. > > 4.72 21 Feb 2006 > > Added 'new' DSN parameter for NConnect(). > > Pager now sanitizes $PHP_SELF to protect against XSS. Thx to James Bercegay and others. > > ADOConnection::MetaType changed to setup $rs->connection correctly. > > New native DB2 driver contributed by Larry Menard, Dan Scott, Andy Staudacher, Bharat Mediratta. > > The mssql CreateSequence() did not BEGIN TRANSACTION correctly. Fixed. Thx Sean Lee. > > The _adodb_countrecs() function in adodb-lib.inc.php has been revised to handle more ORDER BY variations.
2006-01-09Update to adodb-4.7.0adrianp1-1/+8
No available changelog Does include a fix for a known security issue: http://secunia.com/advisories/17418/ "disclose system information, execute arbitrary SQL code, and potentially compromise a vulnerable system."
2005-06-04- Update adodb to 4.63adrianp1-7/+53
- There are a massive amount of changes/updates/bugfixes as the pkgsrc version was quite old (4.00) - For the full details referr to: http://phplens.com/lens/adodb/docs-adodb.htm#changes
2004-04-20Initial import of adodb-4.00, from pkgsrc-wip packaged by Adrianxtraeme1-0/+122
Portelli. ADOdb stands for Active Data Objects Data Base. It currently supports MySQL, PostgreSQL, Interbase, Informix, Oracle, MS SQL 7, Foxpro, Access, ADO, Sybase, DB2 and generic ODBC. The Sybase, Informix and PostgreSQL drivers are community contributions. We hope more people will contribute drivers to support more databases. Unique Features of ADOdb - Easy for Windows programmers to understand. Makes porting ASP code to PHP easy because many of the conventions are similar to Microsoft's ADO. - We provide support code to handle inserts and updates which can be adapted to multiple databases quickly. Methods are provided for date handling, string concatenation and string quoting characters for differing databases. - A metatype system is built in so that we can figure out that types such as CHAR, TEXT and STRING are equivalent in different databases. - Easy to port because all the database dependent code are stored in stub functions. You do not need to port the core logic of the classes. - SQL to popup menu (<SELECT>) support included - PHP4 Session support.