@capacitor-community/sqlite 5.0.0-beta.0 → 5.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -383,14 +383,12 @@ public class ImportFromJson {
|
|
|
383
383
|
ArrayList<String> tColNames = new ArrayList<>();
|
|
384
384
|
ArrayList<String> tColTypes = new ArrayList<>();
|
|
385
385
|
if (tableNamesTypes.has("names")) {
|
|
386
|
-
tColNames = _uJson.
|
|
387
|
-
JSONArrayToArrayList(tableNamesTypes.getJSONArray("names"));
|
|
386
|
+
tColNames = _uJson.getColumnNames(tableNamesTypes.get("names"));
|
|
388
387
|
} else {
|
|
389
388
|
throw new Exception("GetValues: Table " + tableName + " no names");
|
|
390
389
|
}
|
|
391
390
|
if (tableNamesTypes.has("types")) {
|
|
392
|
-
tColTypes = _uJson.
|
|
393
|
-
JSONArrayToArrayList(tableNamesTypes.getJSONArray("types"));
|
|
391
|
+
tColTypes = _uJson.getColumnNames(tableNamesTypes.get("types"));
|
|
394
392
|
} else {
|
|
395
393
|
throw new Exception("GetValues: Table " + tableName + " no types");
|
|
396
394
|
}
|
|
@@ -6,6 +6,7 @@ import com.getcapacitor.community.database.sqlite.SQLite.Database;
|
|
|
6
6
|
import com.getcapacitor.community.database.sqlite.SQLite.UtilsDrop;
|
|
7
7
|
import java.sql.Blob;
|
|
8
8
|
import java.util.ArrayList;
|
|
9
|
+
import java.util.Arrays;
|
|
9
10
|
import java.util.Iterator;
|
|
10
11
|
import java.util.List;
|
|
11
12
|
|
|
@@ -38,13 +39,12 @@ public class UtilsJson {
|
|
|
38
39
|
JSObject namesTypes = getTableColumnNamesTypes(db, tableName);
|
|
39
40
|
ArrayList<String> colNames = new ArrayList<>();
|
|
40
41
|
if (namesTypes.has("names")) {
|
|
41
|
-
|
|
42
|
-
JSONArrayToArrayList(namesTypes.getJSONArray("names"));
|
|
42
|
+
colNames = getColumnNames(namesTypes.get("names"));
|
|
43
43
|
} else {
|
|
44
|
-
|
|
44
|
+
throw new Exception("isLastModified: Table " + tableName + " no names");
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
if (colNames.contains("last_modified")) {
|
|
47
|
+
if (colNames.size() > 0 && colNames.contains("last_modified")) {
|
|
48
48
|
ret = true;
|
|
49
49
|
break;
|
|
50
50
|
}
|
|
@@ -55,6 +55,18 @@ public class UtilsJson {
|
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
+
/**
|
|
59
|
+
* Get Column name's list
|
|
60
|
+
* @param obj
|
|
61
|
+
* @return
|
|
62
|
+
*/
|
|
63
|
+
public ArrayList<String> getColumnNames(Object obj) {
|
|
64
|
+
|
|
65
|
+
ArrayList<String> colNames = new ArrayList<>();
|
|
66
|
+
if (obj instanceof ArrayList) colNames = (ArrayList<String>) obj;
|
|
67
|
+
|
|
68
|
+
return colNames;
|
|
69
|
+
}
|
|
58
70
|
/**
|
|
59
71
|
* Check existence of sql_deleted column
|
|
60
72
|
* @param db
|
|
@@ -72,8 +84,7 @@ public class UtilsJson {
|
|
|
72
84
|
JSObject namesTypes = getTableColumnNamesTypes(db, tableName);
|
|
73
85
|
ArrayList<String> colNames = new ArrayList<>();
|
|
74
86
|
if (namesTypes.has("names")) {
|
|
75
|
-
|
|
76
|
-
JSONArrayToArrayList(namesTypes.getJSONArray("names"));
|
|
87
|
+
colNames = getColumnNames(namesTypes.get("names"));
|
|
77
88
|
} else {
|
|
78
89
|
throw new Exception("isSqlDeleted: Table " + tableName + " no names");
|
|
79
90
|
}
|
|
@@ -487,13 +498,12 @@ public class UtilsJson {
|
|
|
487
498
|
ArrayList<String> rowTypes = new ArrayList<>();
|
|
488
499
|
ArrayList<String> rowNames = new ArrayList<>();
|
|
489
500
|
if (tableNamesTypes.has("names")) {
|
|
490
|
-
rowNames =
|
|
491
|
-
JSONArrayToArrayList(tableNamesTypes.getJSONArray("names"));
|
|
501
|
+
rowNames = getColumnNames(tableNamesTypes.get("names"));
|
|
492
502
|
} else {
|
|
493
503
|
throw new Exception("GetValues: Table " + tableName + " no names");
|
|
494
504
|
}
|
|
495
505
|
if (tableNamesTypes.has("types")) {
|
|
496
|
-
rowTypes =
|
|
506
|
+
rowTypes = getColumnNames(tableNamesTypes.get("types"));
|
|
497
507
|
} else {
|
|
498
508
|
throw new Exception("GetValues: Table " + tableName + " no types");
|
|
499
509
|
}
|
|
@@ -545,11 +555,4 @@ public class UtilsJson {
|
|
|
545
555
|
}
|
|
546
556
|
return row;
|
|
547
557
|
}
|
|
548
|
-
public ArrayList<String> JSONArrayToArrayList(JSONArray arr) throws JSONException {
|
|
549
|
-
ArrayList<String> retArr = new ArrayList<>();
|
|
550
|
-
for (int i=0; i<arr.length(); i++) {
|
|
551
|
-
retArr.add(arr.getString(i));
|
|
552
|
-
}
|
|
553
|
-
return retArr;
|
|
554
|
-
}
|
|
555
558
|
}
|
package/package.json
CHANGED