Beispiel #1
0
 /**
  * Query for truncating a table
  *
  * @param string the name of the table
  * @return this
  */
 public function truncate($table)
 {
     //Argument 1 must be a string
     Eden_Sqlite_Error::i()->argument(1, 'string');
     $this->_query = 'TRUNCATE "' . $table . '"';
     return $this;
 }
Beispiel #2
0
 /**
  * Returns the select query builder
  *
  * @return Eden_Sql_Select
  */
 public function select($select = 'ROWID,*')
 {
     //Argument 1 must be a string or array
     Eden_Sqlite_Error::i()->argument(1, 'string', 'array');
     return Eden_Sql_Select::i($select);
 }
Beispiel #3
0
 /**
  * Sets the name of the table you wish to create
  *
  * @param string name
  * @return this
  */
 public function setName($name)
 {
     //Argument 1 must be a string
     Eden_Sqlite_Error::i()->argument(1, 'string');
     $this->_name = $name;
     return $this;
 }