* @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2014 PradoSoft * @license http://www.pradosoft.com/license/ * @package System.Data.SqlMap.Configuration */ /** * TSqlMapInsert class corresponds to the element. * * The element allows child elements that can be used * to generate a key to be used for the insert command. * * @author Wei Zhuo * @package System.Data.SqlMap.Configuration * @since 3.1 */ class TSqlMapInsert extends TSqlMapStatement { private $_selectKey=null; /** * @return TSqlMapSelectKey select key element. */ public function getSelectKey() { return $this->_selectKey; } /** * @param TSqlMapSelectKey select key. */ public function setSelectKey($value) { $this->_selectKey = $value; } }