Ctrl + K
Try new app for kids
With kids create app...
You can save your kids's art, add their voices to the images, and share them with your loved ones.
Advanced Options
mysql -h localhost -P 3306
Connection string
mysql://@localhost:3306/?
JDBC Connection String:
jdbc:mysql://localhost:3306/
var mysql = require('mysql'); var connection = mysql.createConnection({ host: 'localhost', port: 3306, }); connection.connect(function(err) { if (err) { console.error('error connecting: ' + err.stack); return; } console.log('connected as id ' + connection.threadId); });
import pymysql connection = pymysql.connect(host='localhost', port=3306) try: with connection.cursor() as cursor: print("Connection successful!") finally: connection.close()
See also: