Neto

Results 7 comments of Neto

A flag in v-delete-user command to delete all user backups would be great.

I've just found that it's possible to truncate using: ```php $h->table('table_name')->truncate()->execute(); ``` Also found that it's possible to drop a table using: ```php $h->table('table_name')->drop()->execute(); ``` But I haven't found anything...

> Hey @neto737, if you haven't solved this yet, what does the code above produce? > > I see you're also using a mixture of bound params and value inserts...

Fixed using Literal class ```php $query = static::getInstance()->update('users') ->set([ 'balance' => new Literal('balance + ' . $amount) ]) ->where('id', $userId); ```

> > Adminer has no development since 2021... > > > > https://www.adminer.org/#download https://github.com/vrana/adminer/ > > apart of few security updates seems do not need upgrades.. author said that due...

Any solution to this bug?