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
Refactor cc.query feature. New class? new method?
cc.query
Update
From the doc:
from cartoframes.client import SQLClient sql_client = SQLClient(creds) sql_client.query('select …') // Uses the SQL API sql_client.execute('insert …') // Uses the Batch SQL API # Helpers (future) sql_client.create_table(‘table_name’) sql_client.distinct(‘table_name’, ‘column_name’) sql_client.bounds(‘table_name’)
The text was updated successfully, but these errors were encountered:
I see 2 options:
I am not sure about the second one, so I would say a function is enough, but maybe someone see more things based on the second one
Sorry, something went wrong.
Jesus89
Successfully merging a pull request may close this issue.
Refactor
cc.query
feature. New class? new method?Update
From the doc:
The text was updated successfully, but these errors were encountered: