在Android Studio与SQL Server之间建立连接时出现问题

时间:2019-05-20 06:10:00

标签: android sql-server

在Android Studio与SQL Server之间连接时出现异常,并且异常是

  

“ Error:java.lang.RuntimeException:compactFrames选项不支持JSR / RET”。

我添加了两个库jtds 1.3.1,jtds 1.2.7与Sql Server连接

这是我的连接代码

 @SuppressLint("NewApi")
    public Connection connectionclass(String user, String password, String database, String server)
    {
        StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
        StrictMode.setThreadPolicy(policy);
        Connection connection = null;
        String ConnectionURL = null;
        try
        {
            Class.forName("net.sourceforge.jtds.jdbc.Driver");
            ConnectionURL = "jdbc:jtds:sqlserver://" + server + database + ";user=" + user+ ";password=" + password + ";";
            connection = DriverManager.getConnection(ConnectionURL);
        }
        catch (SQLException se)
        {
            Log.e("error here 1 : ", se.getMessage());
        }
        catch (ClassNotFoundException e)
        {
            Log.e("error here 2 : ", e.getMessage());
        }
        catch (Exception e)
        {
            Log.e("error here 3 : ", e.getMessage());
        }
        return connection;
    }

我在编译时遇到异常,我不知道的原因是什么

0 个答案:

没有答案