Skip to content

Version 2.0.5

Choose a tag to compare

@skipperbent skipperbent released this 27 Oct 17:03
· 15 commits to master since this release
  • Added support for custom table prefixes/aliases.

Very basic example:

$query->addPrefix('post', 'child');
$query->where('id', '=', 2);

Will output:

SELECT * FROM post AS child WHERE id = 2