public function insertID(): int
{ return $this->connID->insert_id;
} /**
* Begin Transaction
*/
protected function _transBegin(): bool
{ $this->connID->
autocommit(false
);
return $this->connID->
begin_transaction();
} /**
* Commit Transaction
*/
protected function _transCommit(): bool
{ if ($this->connID->
commit()) { $this->connID->
autocommit(true
);