We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I checkout all the file, I did not find an example on how to specify database. So I try to use Sphinxql() function directly, like
cl := manticore.NewClient() cl.SetServer("localhost", 9312) cl.Open() foo, err := cl.Sphinxql("select * from kgall; show meta;") fmt.Println(foo, err)
But I got " [ERROR 1064 (42000): unknown local table(s) 'kgall' in search request] " for response. What should I do to do a query job.
The text was updated successfully, but these errors were encountered:
kgall is a table of the database that I want to specify.
Sorry, something went wrong.
I did not find an example on how to specify database
Manticore doesn't support databases yet, all tables are just in the same database. You don't have to specify it.
But I got " [ERROR 1064 (42000): unknown local table(s) 'kgall' in search request] " for response.
Make sure table kgall exists: mysql -P9306 -h0 -e "show tables"
kgall
mysql -P9306 -h0 -e "show tables"
No branches or pull requests
I checkout all the file, I did not find an example on how to specify database. So I try to use Sphinxql() function directly, like
But I got " [ERROR 1064 (42000): unknown local table(s) 'kgall' in search request] " for response.
What should I do to do a query job.
The text was updated successfully, but these errors were encountered: