在Android中连接到SQL Server

lnvxswe2  于 2023-06-20  发布在  Android
关注(0)|答案(1)|浏览(149)

我已经下载了jtds和jdbc,甚至在我的库下,我试过com.microsoft.sqlserver.jdbc.SQLServerDrivernet.sourceforge.jtds.jdbc.Driver仍然不工作。我还在我的build.gradle的依赖项中添加了这两个,但仍然不起作用,我甚至允许Android清单
下面是我的build.gradle文件的依赖项:

  1. dependencies {
  2. implementation 'androidx.appcompat:appcompat:1.6.1'
  3. implementation 'com.google.android.material:material:1.5.0'
  4. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  5. testImplementation 'junit:junit:4.13.2'
  6. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  7. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  8. //implementation 'com.microsoft.sqlserver:mssql-jdbc:9.4.0.jre8'
  9. //implementation 'net.sourceforge.jtds:jtds:1.3.1'
  10. implementation files('libs/jtds-1.3.1.jar')
  11. implementation 'com.microsoft.sqlserver:mssql-jdbc:12.2.0.jre8'
  12. }

下面是AndroidManifest.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="com.example.canteenmeal">
  5. <uses-permission android:name="android.permission.NFC" />
  6. <uses-permission android:name="android.permission.INTERNET" />
  7. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  8. <uses-feature android:name="android.hardware.nfc" />
  9. <application
  10. android:allowBackup="true"
  11. android:dataExtractionRules="@xml/data_extraction_rules"
  12. android:fullBackupContent="@xml/backup_rules"
  13. android:icon="@mipmap/ic_launcher"
  14. android:label="@string/app_name"
  15. android:roundIcon="@mipmap/ic_launcher_round"
  16. android:supportsRtl="true"
  17. android:theme="@style/Theme.CanteenMeal"
  18. tools:targetApi="31">
  19. <activity
  20. android:name=".MainActivity"
  21. android:theme="@style/Theme.AppCompat.Light.NoActionBar"
  22. android:exported="true">
  23. <intent-filter>
  24. <action android:name="android.intent.action.MAIN" />
  25. <category android:name="android.intent.category.LAUNCHER" />
  26. <action android:name="android.nfc.action.TECH_DISCOVERED" />
  27. </intent-filter>
  28. </activity>
  29. <activity
  30. android:name=".AdminActivity"
  31. android:exported="true">
  32. <!-- Define any necessary intent filters or other attributes for AdminActivity -->
  33. </activity>
  34. <activity
  35. android:name=".CanteenEmployeeActivity"
  36. android:exported="true">
  37. <!-- Define any necessary intent filters or other attributes for CanteenEmployeeActivity -->
  38. </activity>
  39. <!-- Other manifest entries -->
  40. </application>
  41. </manifest>

这是我的DatabaseHelper.java:

  1. public class DatabaseHelper {
  2. private static final String DATABASE_URL = "jdbc:sqlserver://10.1.32.111:1433/PROD";
  3. private static final String DATABASE_USERNAME = "Sexy";
  4. private static final String DATABASE_PASSWORD = "sexy";
  5. // Login table constants
  6. private static final String TABLE_NAME = "users";
  7. private static final String COLUMN_USERNAME = "username";
  8. private static final String COLUMN_PASSWORD = "password";
  9. // Employee table constants
  10. private static final String TABLE_EMPLOYEE = "employee";
  11. private static final String COLUMN_EMPLOYEE_VISA = "visa";
  12. private static final String COLUMN_EMPLOYEE_NAME = "employeename";
  13. private static final String COLUMN_EMPLOYEE_BADGE_NUMBER = "badgenumber";
  14. // Report table constants
  15. private static final String TABLE_REPORT = "reports";
  16. private static final String COLUMN_REPORT_EMPLOYEE_VISA = "visa";
  17. private static final String COLUMN_REPORT_EMPLOYEE_NAME = "employeename";
  18. private static final String COLUMN_REPORT_EMPLOYEE_BADGE_NUMBER = "badgenumber";
  19. private static final String COLUMN_COLOUR = "Colour";
  20. private static final String COLUMN_DATE_TIME = "Date_Time";
  21. private Connection connection;
  22. private Context context;
  23. public DatabaseHelper(Context context) {
  24. this.context= context;
  25. try {
  26. // Load the SQL Server JDBC driver
  27. Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
  28. // Connect to the database
  29. connection = DriverManager.getConnection(DATABASE_URL, DATABASE_USERNAME, DATABASE_PASSWORD);
  30. } catch (ClassNotFoundException | SQLException e) {
  31. e.printStackTrace();
  32. }
  33. }

我敢肯定,这与getConnection有关,它不工作的地方有人能帮助我吗
Here are the details of the SQL server

nwwlzxa7

nwwlzxa71#

我已经找到了解决方案,我必须在databasehelper中使用严格模式,这里是更新的代码:

  1. public DatabaseHelper(Context context) {
  2. this.context= context;
  3. StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
  4. StrictMode.setThreadPolicy(policy);
  5. try {
  6. // Load the SQL Server JDBC driver
  7. Class.forName("net.sourceforge.jtds.jdbc.Driver");
  8. // Connect to the database
  9. connection = DriverManager.getConnection(DATABASE_URL,DATABASE_USERNAME,DATABASE_PASSWORD);
  10. } catch (ClassNotFoundException | SQLException e) {
  11. e.printStackTrace();
  12. }
  13. }

相关问题