Skip to content

Commit

Permalink
- added composer
Browse files Browse the repository at this point in the history
- updated adodb via composer to fix install issue with PHP8
  • Loading branch information
testlinkDevTeam committed Nov 7, 2021
1 parent 7e3781d commit 1937bd7
Show file tree
Hide file tree
Showing 221 changed files with 16,734 additions and 16,666 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"guzzlehttp/psr7": "^1.6",
"http-interop/http-factory-guzzle": "^1.0",
"laminas/laminas-diactoros": "^2.2",
"adodb/adodb-php": "^5.20",
"adodb/adodb-php": "^5.21",
"phpmailer/phpmailer": "^6.1",
"smarty/smarty": "^3.1",
"psr/log": "^1.1",
Expand Down
28 changes: 18 additions & 10 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added composer.phar
Binary file not shown.
17 changes: 0 additions & 17 deletions vendor/adodb/adodb-php/.gitattributes

This file was deleted.

10 changes: 0 additions & 10 deletions vendor/adodb/adodb-php/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions vendor/adodb/adodb-php/.mailmap

This file was deleted.

2 changes: 1 addition & 1 deletion vendor/adodb/adodb-php/LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ In plain English, you do not need to distribute your application in source code
nor do you need to distribute ADOdb source code, provided you follow the rest of
terms of the BSD license.

For more information about ADOdb, visit http://adodb.org/
For more information about ADOdb, visit https://adodb.org/

BSD 3-Clause License
--------------------
Expand Down
29 changes: 14 additions & 15 deletions vendor/adodb/adodb-php/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ADOdb Library for PHP5
ADOdb Library for PHP
======================

[![Join chat on Gitter](https://img.shields.io/gitter/room/form-data/form-data.svg)](https://gitter.im/adodb/adodb?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Expand All @@ -16,7 +16,7 @@ or, at your option, any later version.
This means you can use it in proprietary products;
see [License](https://github.com/ADOdb/ADOdb/blob/master/LICENSE.md) for details.

Home page: http://adodb.org/
Home page: https://adodb.org/


Introduction
Expand All @@ -27,8 +27,8 @@ need for a database class library to hide the differences between the
different databases (encapsulate the differences) so we can easily
switch databases.

The library currently supports MySQL, Interbase, Sybase, PostgreSQL, Oracle,
Microsoft SQL server, Foxpro ODBC, Access ODBC, Informix, DB2,
The library currently supports MySQL, Firebird & Interbase, PostgreSQL, SQLite3, Oracle,
Microsoft SQL Server, Foxpro ODBC, Access ODBC, Informix, DB2, Sybase,
Sybase SQL Anywhere, generic ODBC and Microsoft's ADO.

We hope more people will contribute drivers to support other databases.
Expand All @@ -48,27 +48,27 @@ You can debug using:
<?php
include('adodb/adodb.inc.php');

$db = ADONewConnection($driver); # eg. 'mysql' or 'oci8'
$db = adoNewConnection($driver); # eg. 'mysqli' or 'oci8'
$db->debug = true;
$db->Connect($server, $user, $password, $database);
$rs = $db->Execute('select * from some_small_table');
$db->connect($server, $user, $password, $database);
$rs = $db->execute('select * from some_small_table');
print "<pre>";
print_r($rs->GetRows());
print_r($rs->getRows());
print "</pre>";
```


Documentation and Examples
==========================

Refer to the [ADOdb website](http://adodb.org/) for library documentation and examples. The documentation can also be [downloaded for offline viewing](https://sourceforge.net/projects/adodb/files/Documentation/).
Refer to the [ADOdb website](https://adodb.org/) for library documentation and examples. The documentation can also be [downloaded for offline viewing](https://sourceforge.net/projects/adodb/files/Documentation/).

- [Main documentation](http://adodb.org/dokuwiki/doku.php?id=v5:userguide:userguide_index): Query, update and insert records using a portable API.
- [Data dictionary](http://adodb.org/dokuwiki/doku.php?id=v5:dictionary:dictionary_index) describes how to create database tables and indexes in a portable manner.
- [Database performance monitoring](http://adodb.org/dokuwiki/doku.php?id=v5:performance:performance_index) allows you to perform health checks, tune and monitor your database.
- [Database-backed sessions](http://adodb.org/dokuwiki/doku.php?id=v5:session:session_index).
- [Main documentation](https://adodb.org/dokuwiki/doku.php?id=v5:userguide:userguide_index): Query, update and insert records using a portable API.
- [Data dictionary](https://adodb.org/dokuwiki/doku.php?id=v5:dictionary:dictionary_index) describes how to create database tables and indexes in a portable manner.
- [Database performance monitoring](https://adodb.org/dokuwiki/doku.php?id=v5:performance:performance_index) allows you to perform health checks, tune and monitor your database.
- [Database-backed sessions](https://adodb.org/dokuwiki/doku.php?id=v5:session:session_index).

There is also a [tutorial](http://adodb.org/dokuwiki/doku.php?id=v5:userguide:mysql_tutorial) that contrasts ADOdb code with PHP native MySQL code.
There is also a [tutorial](https://adodb.org/dokuwiki/doku.php?id=v5:userguide:mysql_tutorial) that contrasts ADOdb code with PHP native MySQL code.


Files
Expand Down Expand Up @@ -96,7 +96,6 @@ https://github.com/ADOdb/ADOdb/issues

You may also find legacy issues in

- the old [ADOdb forums](http://phplens.com/lens/lensforum/topics.php?id=4) on phplens.com
- the [SourceForge tickets section](http://sourceforge.net/p/adodb/_list/tickets)

However, please note that they are not actively monitored and should
Expand Down
Loading

0 comments on commit 1937bd7

Please sign in to comment.