* @return the prepared statement
*/
public Prepared prepare(String sql, boolean rightsChecked) {
Parser parser = createParser();
parser.setRightsChecked(rightsChecked);
return parser.prepare(sql);
}
/**
* Parse and prepare the given SQL statement.
* This method also checks if the connection has been closed.