我正在使用带有 Sqlserver 的 Android Studio 创建一个简单的 CRUD。当我将数据添加到数据库中时,出现错误 ConnectionRefusedError。我已将代码附在到目前为止我尝试过的代码下方。我一直在尝试连接数据库 2 两天,但它没有让我这样做。我成功添加jar文件jtds-1.2.7.jar我得到了 SQL 服务器的 IP 地址及其端口XML<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <TextView android:id="@+id/view" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="View" /> <EditText android:id="@+id/title" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" /> <EditText android:id="@+id/course" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:inputType="textMultiLine" /> <Button android:id="@+id/btn1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="OK" /> <Button android:id="@+id/v1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="View" /></LinearLayout>
1 回答
慕桂英546537
TA贡献1848条经验 获得超10个赞
该ConnectionRefused
错误仅表示主机拒绝该端口上的连接。也许该端口在主机的防火墙上被阻止了?如果您有权访问主机,则可以简单地取消阻止该端口。请报告您的发现。
添加回答
举报
0/150
提交
取消