Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.144.104.175
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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 /
ifk /
web /
framework /
Data /
SqlMap /
Statements /
[ HOME SHELL ]
Name
Size
Permission
Action
IMappedStatement.php
2.73
KB
-rw-r--r--
TCachingStatement.php
2.96
KB
-rw-r--r--
TDeleteMappedStatement.php
488
B
-rw-r--r--
TInsertMappedStatement.php
1.29
KB
-rw-r--r--
TMappedStatement.php
35.46
KB
-rw-r--r--
TPreparedCommand.php
2.08
KB
-rw-r--r--
TPreparedStatement.php
1.5
KB
-rw-r--r--
TPreparedStatementFactory.php
1.17
KB
-rw-r--r--
TSelectMappedStatement.php
822
B
-rw-r--r--
TSimpleDynamicSql.php
866
B
-rw-r--r--
TStaticSql.php
758
B
-rw-r--r--
TUpdateMappedStatement.php
1.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TCachingStatement.php
<?php /** * TCachingStatement class file. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package System.Data.SqlMap.Statements */ /** * TCacheingStatement class. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @package System.Data.SqlMap.Statements * @since 3.1 */ class TCachingStatement extends TComponent implements IMappedStatement { private $_mappedStatement; public function __construct(TMappedStatement $statement) { $this->_mappedStatement = $statement; } public function getID() { return $this->_mappedStatement->getID(); } public function getStatement() { return $this->_mappedStatement->getStatement(); } public function getManager() { return $this->_mappedStatement->getManager(); } public function executeQueryForMap($connection, $parameter,$keyProperty, $valueProperty=null, $skip=-1, $max=-1,$delegate=null) { $sql = $this->createCommand($connection, $parameter, $skip, $max); $key = $this->getCacheKey(array(clone($sql), $keyProperty, $valueProperty,$skip, $max)); $map = $this->getStatement()->getCache()->get($key); if($map===null) { $map = $this->_mappedStatement->runQueryForMap( $connection, $parameter, $sql, $keyProperty, $valueProperty, $delegate); $this->getStatement()->getCache()->set($key, $map); } return $map; } public function executeUpdate($connection, $parameter) { return $this->_mappedStatement->executeUpdate($connection, $parameter); } public function executeInsert($connection, $parameter) { return $this->executeInsert($connection, $parameter); } public function executeQueryForList($connection, $parameter, $result=null, $skip=-1, $max=-1, $delegate=null) { $sql = $this->createCommand($connection, $parameter, $skip, $max); $key = $this->getCacheKey(array(clone($sql), $parameter, $skip, $max)); $list = $this->getStatement()->getCache()->get($key); if($list===null) { $list = $this->_mappedStatement->runQueryForList( $connection, $parameter, $sql, $result, $delegate); $this->getStatement()->getCache()->set($key, $list); } return $list; } public function executeQueryForObject($connection, $parameter, $result=null) { $sql = $this->createCommand($connection, $parameter); $key = $this->getCacheKey(array(clone($sql), $parameter)); $object = $this->getStatement()->getCache()->get($key); if($object===null) { $object = $this->_mappedStatement->runQueryForObject($connection, $sql, $result); $this->getStatement()->getCache()->set($key, $object); } return $object; } protected function getCacheKey($object) { $cacheKey = new TSqlMapCacheKey($object); return $cacheKey->getHash(); } protected function createCommand($connection, $parameter, $skip=null, $max=null) { return $this->_mappedStatement->getCommand()->create($this->getManager(), $connection, $this->getStatement(), $parameter, $skip, $max); } }
Close