Lines Matching refs:RdbPredicates

7 - [RdbPredicates](#rdbpredicates): provides predicates indicating the nature, feature, or relations…
313 ## RdbPredicates section
321 A constructor used to create an **RdbPredicates** object.
334 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
339 inDevices(devices: Array<string>): RdbPredicates
341 Sets an **RdbPredicates** to specify the remote devices to connect on the network during distribute…
359 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
382 let predicates = new data_rdb.RdbPredicates("EMPLOYEE");
385 let predicates = new data_rdb.RdbPredicates("EMPLOYEE");
391 inAllDevices(): RdbPredicates
393 Sets an **RdbPredicates** to specify all remote devices on the network to connect during distribute…
401 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
406 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
412 equalTo(field: string, value: ValueType): RdbPredicates
414 Sets an **RdbPredicates** to match the field with data type **ValueType** and value equal to the sp…
423 | value | [ValueType](#valuetype) | Yes | Value to match the **RdbPredicates**. |
429 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
434 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
441 notEqualTo(field: string, value: ValueType): RdbPredicates
443 Sets an **RdbPredicates** to match the field with data type **ValueType** and value not equal to th…
452 | value | [ValueType](#valuetype) | Yes | Value to match the **RdbPredicates**. |
458 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
463 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
470 beginWrap(): RdbPredicates
472 Adds a left parenthesis to the **RdbPredicates**.
480 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** with a left parenthesis. |
485 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
496 endWrap(): RdbPredicates
498 Adds a right parenthesis to the **RdbPredicates**.
506 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** with a right parenthesis. |
511 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
522 or(): RdbPredicates
524 Adds the OR condition to the **RdbPredicates**.
532 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** with the OR condition. |
537 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
545 and(): RdbPredicates
547 Adds the AND condition to the **RdbPredicates**.
555 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** with the AND condition. |
560 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
568 contains(field: string, value: string): RdbPredicates
570 Sets an **RdbPredicates** to match a string containing the specified value.
579 | value | string | Yes | Value to match the **RdbPredicates**. |
585 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
590 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
596 beginsWith(field: string, value: string): RdbPredicates
598 Sets an **RdbPredicates** to match a string that starts with the specified value.
607 | value | string | Yes | Value to match the **RdbPredicates**. |
613 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
618 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
624 endsWith(field: string, value: string): RdbPredicates
626 Sets an **RdbPredicates** to match a string that ends with the specified value.
635 | value | string | Yes | Value to match the **RdbPredicates**. |
641 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
646 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
652 isNull(field: string): RdbPredicates
654 Sets an **RdbPredicates** to match the field whose value is null.
668 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
672 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
678 isNotNull(field: string): RdbPredicates
680 Sets an **RdbPredicates** to match the field whose value is not null.
694 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
707 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
713 like(field: string, value: string): RdbPredicates
715 Sets an **RdbPredicates** to match a string that is similar to the specified value.
724 | value | string | Yes | Value to match the **RdbPredicates**. |
730 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
735 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
741 glob(field: string, value: string): RdbPredicates
743 Sets an **RdbPredicates** to match the specified string.
752 | value | string | Yes | Value to match the **RdbPredicates**.<br><br>Wildcards are supported. * in…
758 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
763 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
769 between(field: string, low: ValueType, high: ValueType): RdbPredicates
771 Sets an **RdbPredicates** to match the field with data type **ValueType** and value within the spec…
780 | low | [ValueType](#valuetype) | Yes | Minimum value to match the **RdbPredicates**. |
781 | high | [ValueType](#valuetype) | Yes | Maximum value to match the **RdbPredicates**. |
787 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
792 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
798 notBetween(field: string, low: ValueType, high: ValueType): RdbPredicates
800 Sets an **RdbPredicates** to match the field with data type **ValueType** and value out of the spec…
809 | low | [ValueType](#valuetype) | Yes | Minimum value to match the **RdbPredicates**. |
810 | high | [ValueType](#valuetype) | Yes | Maximum value to match the **RdbPredicates**. |
816 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
821 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
827 greaterThan(field: string, value: ValueType): RdbPredicates
829 Sets an **RdbPredicates** to match the field with data type **ValueType** and value greater than th…
838 | value | [ValueType](#valuetype) | Yes | Value to match the **RdbPredicates**. |
844 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
849 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
855 lessThan(field: string, value: ValueType): RdbPredicates
857 Sets an **RdbPredicates** to match the field with data type **ValueType** and value less than the s…
866 | value | [ValueType](#valuetype) | Yes | Value to match the **RdbPredicates**. |
872 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
877 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
883 greaterThanOrEqualTo(field: string, value: ValueType): RdbPredicates
885 Sets an **RdbPredicates** to match the field with data type **ValueType** and value greater than or…
894 | value | [ValueType](#valuetype) | Yes | Value to match the **RdbPredicates**. |
900 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
905 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
911 lessThanOrEqualTo(field: string, value: ValueType): RdbPredicates
913 Sets an **RdbPredicates** to match the field with data type **ValueType** and value less than or eq…
922 | value | [ValueType](#valuetype) | Yes | Value to match the **RdbPredicates**. |
928 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
933 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
939 orderByAsc(field: string): RdbPredicates
941 Sets an **RdbPredicates** to match the column with values sorted in ascending order.
955 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
960 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
966 orderByDesc(field: string): RdbPredicates
968 Sets an **RdbPredicates** to match the column with values sorted in descending order.
982 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
987 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
993 distinct(): RdbPredicates
995 Sets an **RdbPredicates** to filter out duplicate records.
1003 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object that can filter out duplicate records.…
1008 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1014 limitAs(value: number): RdbPredicates
1016 Sets an **RdbPredicates** to specify the maximum number of records.
1030 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object that specifies the maximum number of r…
1035 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1041 offsetAs(rowOffset: number): RdbPredicates
1043 Sets an **RdbPredicates** to specify the start position of the returned result.
1057 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object that specifies the start position of t…
1062 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1068 groupBy(fields: Array&lt;string&gt;): RdbPredicates
1070 Sets an **RdbPredicates** to group rows that have the same value into summary rows.
1084 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object that groups rows with the same value. |
1089 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1095 indexedBy(field: string): RdbPredicates
1097 Sets an **RdbPredicates** object to specify the index column.
1112 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object that specifies the index column. |
1117 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1123 in(field: string, value: Array&lt;ValueType&gt;): RdbPredicates
1125 Sets an **RdbPredicates** to match the field with data type **Array&#60;ValueType&#62;** and value …
1140 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
1145 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1151 notIn(field: string, value: Array&lt;ValueType&gt;): RdbPredicates
1153 Sets an **RdbPredicates** to match the field with data type **Array&#60;ValueType&#62;** and value …
1168 | [RdbPredicates](#rdbpredicates) | **RdbPredicates** object created. |
1173 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1415 update(values: ValuesBucket, predicates: RdbPredicates, callback: AsyncCallback&lt;number&gt;):void
1417 Updates data in the RDB store based on the specified **RdbPredicates** object. This API uses an asy…
1426 | predicates | [RdbPredicates](#rdbpredicates) | Yes | Update conditions specified by the **RdbPred…
1449 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1462 update(values: ValuesBucket, predicates: RdbPredicates):Promise&lt;number&gt;
1464 Updates data based on the specified **RdbPredicates** object. This API uses a promise to return the…
1473 | predicates | [RdbPredicates](#rdbpredicates) | Yes | Update conditions specified by the **RdbPred…
1501 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1513 delete(predicates: RdbPredicates, callback: AsyncCallback&lt;number&gt;):void
1515 Deletes data from the RDB store based on the specified **RdbPredicates** object. This API uses an a…
1523 | predicates | [RdbPredicates](#rdbpredicates) | Yes | Conditions specified by the **RdbPredicates*…
1529 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1542 delete(predicates: RdbPredicates):Promise&lt;number&gt;
1544 Deletes data from the RDB store based on the specified **RdbPredicates** object. This API uses a pr…
1552 | predicates | [RdbPredicates](#rdbpredicates) | Yes | Conditions specified by the **RdbPredicates*…
1563 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1575 query(predicates: RdbPredicates, columns: Array&lt;string&gt;, callback: AsyncCallback&lt;ResultSet…
1585 | predicates | [RdbPredicates](#rdbpredicates) | Yes | Query conditions specified by the **RdbPredi…
1592 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
1606 query(predicates: RdbPredicates, columns?: Array&lt;string&gt;):Promise&lt;ResultSet&gt;
1616 | predicates | [RdbPredicates](#rdbpredicates) | Yes | Query conditions specified by the **RdbPredi…
1628 let predicates = new data_rdb.RdbPredicates("EMPLOYEE")
2043 sync(mode: SyncMode, predicates: RdbPredicates, callback: AsyncCallback&lt;Array&lt;[string, number…
2056 | predicates | [RdbPredicates](#rdbpredicates) | Yes | **RdbPredicates** object that specifies the …
2078 let predicates = new data_rdb.RdbPredicates('EMPLOYEE')
2094 sync(mode: SyncMode, predicates: RdbPredicates): Promise&lt;Array&lt;[string, number]&gt;&gt;
2107 | predicates | [RdbPredicates](#rdbpredicates) | Yes | **RdbPredicates** object that specifies the …
2134 let predicates = new data_rdb.RdbPredicates('EMPLOYEE')