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
https://github.com/vlang/v/blob/master/examples/database/mysql.v
import db.mysql fn main() { config := mysql.Config{ host: 'gateway01.ap-southeast-1.prod.aws.tidbcloud.com' port: 4000 username: 'xfQRtLXKTtPHsUi.root' password: '*******' dbname: 'pool_1688' flag: mysql.ConnectionFlag.client_ssl } mut conn := mysql.connect(config)! res := conn.query('show tables')! for row in res.rows() { println(row.vals.join(', ')) } conn.close() }
No response
22569
0.4.8
all
Note
You can use the 👍 reaction to increase the issue's priority for developers.
Please note that only the 👍 reaction to the issue itself counts as a vote. Other reactions and those to comments will not be taken into account.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the feature
https://github.com/vlang/v/blob/master/examples/database/mysql.v
Use Case
Proposed Solution
No response
Other Information
22569
Acknowledgements
Version used
0.4.8
Environment details (OS name and version, etc.)
all
Note
You can use the 👍 reaction to increase the issue's priority for developers.
Please note that only the 👍 reaction to the issue itself counts as a vote.
Other reactions and those to comments will not be taken into account.
The text was updated successfully, but these errors were encountered: