Squery

Simple Query Builder

Лицензия

Лицензия

Категории

Категории

FST Данные Data Formats Serialization
Группа

Группа

com.infstory
Идентификатор

Идентификатор

squery
Последняя версия

Последняя версия

1.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

Squery
Simple Query Builder
Ссылка на сайт

Ссылка на сайт

https://github.com/yongjhih/squery
Система контроля версий

Система контроля версий

https://github.com/yongjhih/squery

Скачать squery

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.infstory/squery/ -->
<dependency>
    <groupId>com.infstory</groupId>
    <artifactId>squery</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.infstory/squery/
implementation 'com.infstory:squery:1.0.1'
// https://jarcasting.com/artifacts/com.infstory/squery/
implementation ("com.infstory:squery:1.0.1")
'com.infstory:squery:jar:1.0.1'
<dependency org="com.infstory" name="squery" rev="1.0.1">
  <artifact name="squery" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.infstory', module='squery', version='1.0.1')
)
libraryDependencies += "com.infstory" % "squery" % "1.0.1"
[com.infstory/squery "1.0.1"]

Зависимости

test (2)

Идентификатор библиотеки Тип Версия
junit : junit-dep jar 4.10
org.mockito : mockito-core jar 1.8.5

Модули Проекта

Данный проект не имеет модулей.

8Query

Android Arsenal Download Build Status javadoc.io Join the chat at https://gitter.im/yongjhih/squery

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)
    1. Use of()
$.of(
    $.equal("A", 1).and().equal("B", 2)
).or().equal("C", 3);
    1. Use begin() + end()
$.begin()
  .equal("A", 1).and().equal("B", 2)
 .end()
 .or().equal("C", 3);
    1. Structured or operator
$.or(
    $.equal("A", 1).and().equal("B", 2),
    $.equal("C", 3)
);
    1. Structured and operator
$.and(
    $.equal("A", 1),
    $.equal("B", 2)
)
.or()
.equal("C", 3);
    1. Structured or + and operators
$.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

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.

Версии библиотеки

Версия
1.0.1