8Query
Easy to build selection and selectionArgs for sql.
A SQLiteQueryBuilder.appendWhere(where)
of whereClause alternative.
Usage
For example:
A = 1 AND B = 2 OR C = 3
Before:
String selection = "A = ? and B = ? OR C = ?";
String[] selectionArgs = new String[] { "1", "2", "3" };
getContentResolver().query(uri, projections, selection, selectionArgs, sortOrder);
After:
Squery squery = $.equal("A", 1).and().equal("B", 2).or().equal("C", 3);
getContentResolver().query(uri, projections, squery.selection, squery.selectionArgs, sortOrder);
// whereClause
// String sql = squery.toString(); // (A = '1') AND (B = '2') OR (C = '3')
Orderby:
squery = squery.desc("D").asc("E").limit(10);
getContentResolver().query(uri, projections, squery.selection, squery.selectionArgs, squery.orderBy);
For another example about block:
(A = 1 and B = 2) OR (C = 3)
-
- Use
of()
- Use
$.of(
$.equal("A", 1).and().equal("B", 2)
).or().equal("C", 3);
-
- Use
begin()
+end()
- Use
$.begin()
.equal("A", 1).and().equal("B", 2)
.end()
.or().equal("C", 3);
-
- Structured
or
operator
- Structured
$.or(
$.equal("A", 1).and().equal("B", 2),
$.equal("C", 3)
);
-
- Structured
and
operator
- Structured
$.and(
$.equal("A", 1),
$.equal("B", 2)
)
.or()
.equal("C", 3);
-
- Structured
or
+and
operators
- Structured
$.or(
$.and(
$.equal("A", 1),
$.equal("B", 2)
),
$.equal("C", 3)
);
Operators
$.in()
squery = $.in("Id", Arrays.asList("1", "2", "3"));
System.out.println(squery.toString()); // (Id IN (1,2,3))
Installation
via jcenter
repositories {
jcenter()
}
dependencies {
compile 'com.infstory:squery:1.0.2'
}
Or via jitpack.io
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
compile 'com.github.yongjhih:squery:-SNAPSHOT'
}
For ActiveAndroid
List<Note> notes = new Select().from(Note.class)
.where(squery.selection, squery.selectionArgs)
.execute();
Test
$ ./gradlew test
:squery:test
squery.MainTests > testEqual PASSED
squery.MainTests > testCascadedAndOr STANDARD_OUT
(A = '1') AND (B = '2') OR (C = '3')
(A = ?) AND (B = ?) OR (C = ?), [1, 2, 3]
squery.MainTests > testCascadedAndOr PASSED
squery.MainTests > testCombineCascadedStructuredAndOr STANDARD_OUT
(((A = '1') AND (B = '2')) OR ((C = '3')))
(((A = ?) AND (B = ?)) OR ((C = ?))), [1, 2, 3]
(((A = '1')) AND ((B = '2'))) OR (C = '3')
(((A = ?)) AND ((B = ?))) OR (C = ?), [1, 2, 3]
(((((A = '1')) AND ((B = '2')))) OR ((C = '3')))
(((((A = ?)) AND ((B = ?)))) OR ((C = ?))), [1, 2, 3]
squery.MainTests > testCombineCascadedStructuredAndOr PASSED
squery.MainTests > testIn PASSED
See Also
- ref. https://gist.github.com/yongjhih/e68184ec75d56d9e2804
- https://github.com/reinaldoarrosi/QueryBuilder
- https://github.com/nhaarman/SQLiteBuilder
- https://github.com/querydsl/querydsl/tree/master/querydsl-sql
- http://www.jooq.org/
- http://pnowy.github.io/NativeCriteria/
- https://gist.github.com/fluxtah/2559252
License
Copyright 2015 8tory, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.