Changeset 898 for trunk/Packages/Common/Database.php
- Timestamp:
- Feb 4, 2021, 11:55:44 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Database.php
r897 r898 129 129 } 130 130 131 function delete(string $Table, string $Condition) 131 function delete(string $Table, string $Condition): void 132 132 { 133 133 $this->query('DELETE FROM `'.$this->Prefix.$Table.'` WHERE '.$Condition); 134 134 } 135 135 136 function insert(string $Table, array $Data) 136 function insert(string $Table, array $Data): void 137 137 { 138 138 $this->query($this->GetInsert($Table, $Data));
Note:
See TracChangeset
for help on using the changeset viewer.