Socket
Book a DemoInstallSign in
Socket

com.infstory:squery

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.infstory:squery

Simple Query Builder

1.0.1
Source
mavenMaven
Version published
Maintainers
1
Source

Android Arsenal

8Query

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

Or via jitpack.io

repositories {
    maven {
        url "https://jitpack.io"
    }
}

dependencies {
    compile 'com.github.yongjhih:squery:1.0.0'
}

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

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.

FAQs

Package last updated on 22 May 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.