php代码
query pairs * Expired will be recompile automatically, any update on config should update ctime as well * * @author Anthony.chen * 2010-2012 reserved */ class PSTMT{ public static $instances = array(); /** * Loading the prepare statment from DB Connection * The stmts is config linked to DB instance with 'stmts' k=>v array * * @return Boolean */ public static function prepare($db='default'){ //Getting statment from config $_config = Pexcel::config('database')->$db; $_ctime = Arr::get($_config,'ctime',0); $_configStmts = Arr::get($_config,'stmts',NULL); if($_configStmts != NULL){//There is statments configured if(!isset(self::$instances[$db])){ $_sql = 'select name , EXTRACT(EPOCH FROM prepare_time) as ctime from pg_prepared_statements'; $_pstmts = DB::query(DB::SELECT,$_sql,true)->execute($db)->as_array(); if(!$_pstmts){ self::$instances[$db] = array(); }else{ //Log::debug('Before Commpiling,statement Found'); foreach($_pstmts as $_pstmt){ self::$instances[$db][$_pstmt->name] = $_pstmt->ctime; } } } //Compile the statments foreach($_configStmts as $stmtName => $stmtQuery){ if(isset(self::$instances[$db][$stmtName])){ if( self::$instances[$db][$stmtName] < $_ctime){ //Log::debug($stmtName.' Expires'); }else{ //Log::debug($stmtName.' Exists'); continue; } } self::compile($stmtName,$stmtQuery,$db); } }else{ throw new Error_Exception('stmts not in config!'); } return True; } /** * Compile the prepared statment * * @param String $stmtName, Statement name * @param String $stmtQuery, Statement query * @param String $db ,Instance name of database * * @return Boolean */ public static function compile($stmtName, $stmtQuery,$db ='default'){ if(isset(self::$instances[$db][$stmtName])){ //already Compiled //Doing Nothing //Log::debug('DEALLOCATE '.$stmtName); DB::query(DB::UPDATE,'DEALLOCATE '.$stmtName)->execute($db); } $_ret = DB::query(DB::SELECT,$stmtQuery,False,NULL,$stmtName)->execute($db)->count(); //Log::debug(__FUNCTION__.':compiling the pstat:'.$stmtQuery); self::$instances[$db][$stmtName] = time(); return True; } /** * Execute the prepared statement * * @param String $stmtName, Statement Name * @param Array $params , The parameter to be transfered into query * @param Boolean $as_object, True to fetch result as object * @param String $db, Database Instance name * * @return Array of result set */ public static function execute($stmtName,$params = array(),$as_object = TRUE,$db = 'default'){ if(isset(self::$instances[$db][$stmtName])){ return DB::query(DB::SELECT,NULL,$as_object,$params,$stmtName)->execute($db); }else{ $_config = Pexcel::config('database')->$db; $_configStmts = Arr::get($_config,'stmts',NULL); //Compile the prepared statment if(isset($_configStmts[$stmtName])){ self::compile($stmtName,$_configStmts[$stmtName],$db); }else{ return false; } return DB::query(DB::SELECT,NULL,$as_object,$params,$stmtName)->execute($db); } } }

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver CS6
Visual web development tools
