PHP: SQLite returns values as strings -


i'm using sqlite laravel , find quite annoying values returned strings. there way enable automatic type casting (like mysql native driver [mysqlnd] does)?
know $casts attribute, i'm looking app-independent solution make database driver casting.
thanks!

yes, can automatically cast. add property model.

protected $casts = [     'is_admin' => 'boolean',     'count' => 'integer' ]; 

Comments

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -