%PDF- %PDF-
| Direktori : /www/varak.net/mail2.varak.net_old/libraries/afterlogic/common/db/ |
| Current File : /www/varak.net/mail2.varak.net_old/libraries/afterlogic/common/db/helper.php |
<?php
/*
* Copyright 2004-2014, AfterLogic Corp.
* Licensed under AGPLv3 license or AfterLogic license
* if commercial version of the product was purchased.
* See the LICENSE file for a full license statement.
*/
/**
* @package Api
* @subpackage Db
*/
interface IDbHelper
{
/**
* @param string $sValue
* @param bool $bWithOutQuote = false
* @param bool $bSearch = false
* @return string
*/
public function EscapeString($sValue, $bWithOutQuote = false, $bSearch = false);
/**
* @param string $sValue
* @return string
*/
public function EscapeColumn($sValue);
/**
* @param int $iTimeStamp
* @param bool $bAsInsert = false
* @return string
*/
public function TimeStampToDateFormat($iTimeStamp, $bAsInsert = false);
/**
* @param string $sFieldName
* @return string
*/
public function GetDateFormat($sFieldName);
/**
* @param string $sFieldName
* @return string
*/
public function UpdateDateFormat($sFieldName);
}