本文整理匯總了PHP中DBConnect::Insert方法的典型用法代碼示例。如果您正苦於以下問題:PHP DBConnect::Insert方法的具體用法?PHP DBConnect::Insert怎麽用?PHP DBConnect::Insert使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DBConnect
的用法示例。
在下文中一共展示了DBConnect::Insert方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: FCoreException
/**
*
* @param DBConnect $db
* @param <type> $title
* @param <type> $header
* @param <type> $dataType
* @param <type> $content
*/
public static final function _CreateDataObject(
DBConnect &$db,
$title,
$header,
$dataType,
$content){
logger_FuncCall(__FILE__, __LINE__, __FUNCTION__);
if (!is_string($title)){ throw new FCoreException("Invalid Param: Args[1] Not A String"); }
if (!is_string($header)){ throw new FCoreException("Invalid Param: Args[2] Not A String"); }
if (!is_string($dataType)){ throw new FCoreException("Invalid Param: Args[3] Not A String"); }
if (!is_string($content)){ throw new FCoreException("Invalid Param: Args[4] Not A String"); }
if ( $dataType != self::TEXT ||
$dataType != self::MTEXT ||
$dataType != self::BLOB ||
$dataType != self::MBLOB){
throw new FCoreException("Invalid Param Range: Unexpected DataType");
}
$newID = $db->InsertThenReturnID(DATATYPEBASE, "
dataType='$dataType',
title='$title',
timeMade=NOW(),
header='$header'");
$db->Insert($dataType,
DT_DTID."=$newID,".
DT_CONTENT."='$content'");
return $newID;
}