Skip to content

MeekroDB v3.0.1

Choose a tag to compare

@SergeyTsalkov SergeyTsalkov released this 27 Jun 23:33
· 73 commits to master since this release

Enable the output of parse() to be used in a query or WhereClause with %? or %l
Examples:

$part = DB::parse('username=%s', 'Joe');
$results = DB::query("SELECT * FROM accounts WHERE %?", $part);