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
Post a Comment