第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何將我的遠(yuǎn)程 MySQL 數(shù)據(jù)庫(kù)與 jdbc 連接?錯(cuò)誤是什么意思?

如何將我的遠(yuǎn)程 MySQL 數(shù)據(jù)庫(kù)與 jdbc 連接?錯(cuò)誤是什么意思?

森林海 2022-09-28 16:19:55
顯示錯(cuò)誤:-Tue Apr 09 14:34:46 IST 2019 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.java.sql.SQLException: Access denied for user 'sql12287303'@'localhost' (using password: YES)我成功地在本地計(jì)算機(jī)中使用了數(shù)據(jù)庫(kù),但我無(wú)法連接到我的遠(yuǎn)程mysql服務(wù)器。public class JDBCDemo {    public static void main(String[] args) {        String TableName;        // TODO Auto-generated method stub        try{            String url="jdbc:mysql://localhost:3306/sql12287303";           //3306/db1?autoReconnect=true&useSSL=false";            String username="sql12287303";            String password="54hBDtsfPg";            Class.forName("com.mysql.jdbc.Driver").newInstance();            Connection con = DriverManager.getConnection(url, username, password);            System.out.println ("Database connection established");            System.out.println(con);            Statement smt = con.createStatement();            smt.execute("create database db1");            smt.execute("use db1");            smt.execute("create table flames(id Integer primary key,fname varchar(20),sname varchar(20)");            smt.execute("show tables");            ResultSet rs = smt.getResultSet();            while(rs.next()){                TableName = rs.getString(1);                System.out.println("Table Name:"+TableName);            }        }catch(Exception e){System.out.println(e);}     }}表名:火焰
查看完整描述

1 回答

?
藍(lán)山帝景

TA貢獻(xiàn)1843條經(jīng)驗(yàn) 獲得超7個(gè)贊

我想一個(gè)暗示是不夠的。

此代碼指示 JDBC 驅(qū)動(dòng)程序連接到名為 上的數(shù)據(jù)庫(kù):sql12287303localhost

String url="jdbc:mysql://localhost:3306/sql12287303";

您報(bào)告的錯(cuò)誤表明您實(shí)際上正在連接到 ,但其用戶在運(yùn)行該位置的數(shù)據(jù)庫(kù)服務(wù)器上是未知的。localhost

如果要連接到遠(yuǎn)程數(shù)據(jù)庫(kù),則需要更改 URL:

String url="jdbc:mysql://sql12.freemysqlhosting.net:3306/sql12287303";


查看完整回答
反對(duì) 回復(fù) 2022-09-28
  • 1 回答
  • 0 關(guān)注
  • 64 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)