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

IF statement in MySQL trigger -

c++ - What does MSC in "// appease MSC" comments mean? -

android - MPAndroidChart - How to add Annotations or images to the chart -