67 $this->Database =
get_package(
'database' ,
'last' , __FILE__ );
68 $this->Security =
get_package(
'security' ,
'last' , __FILE__ );
102 if( is_array( $Key ) )
104 $Key = implode(
'#' , $Key );
107 $Key = $this->Security->get( $Key ,
'string' );
108 $Key = str_replace(
'[sharp]' ,
'#' , $Key );
109 $Value = $this->Security->get( $Value ,
'string' );
111 $this->Database->insert(
112 $this->NativeTable ,
'`key` , `value` , creation_date' ,
"\"$Key\" , \"$Value\" , NOW()"
115 $this->Database->commit();
117 catch( Exception $e )
154 $this->Database->select( $Fields , $this->NativeTable , $Condition )
157 catch( Exception $e )