We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5468e91 commit f9e6a9cCopy full SHA for f9e6a9c
src/System/Database/MyQuery/Insert.php
@@ -77,7 +77,7 @@ protected function builder(): string
77
$stringBinds = implode(', ', $strings_binds);
78
$stringColumn = implode(', ', $columns);
79
80
- $this->_query = "INSERT INTO $this->_table ($stringColumn) VALUES $stringBinds";
+ $this->_query = "INSERT INTO {$this->_table} ({$stringColumn}) VALUES {$stringBinds}";
81
82
return $this->_query;
83
}
0 commit comments