Android studio 连接SQL server
时间: 2024-05-06 14:18:33 浏览: 195
要在 Android Studio 中连接 SQL Server 数据库,您需要执行以下步骤:
1. 在 SQL Server 中启用 TCP/IP:
- 打开 SQL Server Configuration Manager
- 展开 SQL Server Network Configuration 节点
- 选择 Protocols for MSSQLSERVER(或您的 SQL Server 实例名称)
- 右键单击 TCP/IP,然后选择 Enable
2. 启用 SQL Server 身份验证模式:
- 打开 SQL Server Management Studio
- 选择您要连接的数据库的属性
- 选择 Security 选项卡
- 在 Server authentication 下,选择 SQL Server and Windows Authentication mode
3. 在 Android Studio 中,使用 Microsoft JDBC 驱动程序连接到 SQL Server:
- 在 build.gradle 文件中添加以下依赖项:
```
dependencies {
implementation 'com.microsoft.sqlserver:mssql-jdbc:9.2.1.jre11'
}
```
- 在代码中使用以下代码连接到 SQL Server:
```java
String connectionUrl = "jdbc:sqlserver://<server>:<port>;databaseName=<database>;user=<username>;password=<password>";
Connection connection = DriverManager.getConnection(connectionUrl);
```
替换 `<server>`、`<port>`、`<database>`、`<username>` 和 `<password>` 为您的实际值。
请注意,这种方式连接 SQL Server 可能会存在一定的安全风险,建议使用 Web API 作为中间层来连接数据库。
阅读全文