我已经编写了将eclipse与sql server连接以自动化数据库的代码。
我曾尝试在各种站点的帮助下编写代码,但徒劳无功。
这是我编写的代码:
import java.sql.*;
class mysqlcon{
@SuppressWarnings("unused")
public static void main(String args[])
{
Connection con = null;
Statement stmt = null;
ResultSet rs = null;
String host= "localhost";
String user = "shamima";
String passwd = "Welcome@123";
try{
Class.forName("com.mysql.jdbc.Driver");
con=DriverManager.getConnection(
"jdbc:mysql://127.0.0.1:3306/eatngo",user,passwd);
stmt=con.createStatement();
rs=stmt.executeQuery("select * from
ezee_posguest_master");
while(rs.next())
System.out.println("connection
established");
con.close();
}catch(Exception e)
{
System.out.println(e);
}
}
我只想将我的日食与所有数据库连接起来。
但是我得到一个错误:
“ java.sql.SQLException:从服务器接收到未知的初始字符集索引'255'。可以通过'characterEncoding'属性强制使用初始客户端字符集。”
答案 0 :(得分:0)
字符集支持UTF-8对我有用。
url = jdbc:mysql:// localhost:3306 / dbname?characterEncoding = utf-8&useConfigs = maxPerformance