-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getStored() deprecation in ResultSetBase #146
Comments
I don't have any strong preference, but if you can ship this as a separate PR that I can take a look at we can see where it goes from there.
I believe the whole "stored" keyword was being passed around because SphinxQL-Query-Builder/tests/SphinxQL/SphinxQLTest.php Lines 113 to 115 in 51e64fb
I do think this name reflects what it's actually doing. It's just that we've been going off of the way |
Oh, i understood. This issue is a bad suggestion. |
Well |
I was a bit busy the past few weeks and forgot about this issue. I do think this might be worth looking into so that we don't have to manage connections which has been a bit of a hassle and only focus on our goal of providing a "Query Builder" for the SphinxQL syntax. This may also end up resolving #118 which has been open for quite some time. |
As long as you can create a new Connection class that used Doctrine DBAL, you should be good to go. Sadly we can't completely separate this library from the Connection as we need it to escape strings. |
And I have a question about getStored deprecation
It was quiet hard to understand its code, so then i recognized that there is no need to remove it
I have a suggection
-- ResultSetInterface with store() and getStored()
-- MultiResultSetInterface extends ResultSetInterface
-- SingleResultSetInterface extends ResultSetInterface
and them it won't be so complicated to understand waht is going on
what do you think ?
The text was updated successfully, but these errors were encountered: