Skip to content

Instantly share code, notes, and snippets.

@apoca
Created July 21, 2015 12:56
Show Gist options
  • Save apoca/3fefebeef08b11acad3d to your computer and use it in GitHub Desktop.
Save apoca/3fefebeef08b11acad3d to your computer and use it in GitHub Desktop.
$statement = "SELECT id, name FROM users WHERE status = 'P'";
/**
* Query string
*/
public function queryString($statement)
{
$adapter = $this->adapter;
$results = $adapter->query($statement, $adapter::QUERY_MODE_EXECUTE);
return $results;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment