
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Easy to build selection and selectionArgs for sql.
A SQLiteQueryBuilder.appendWhere(where)
of whereClause alternative.
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)
brace()
$.brace(
$.equal("A", 1).and().equal("B", 2)
).or().equal("C", 3);
begin()
+ end()
$.begin()
.equal("A", 1).and().equal("B", 2)
.end()
.or().equal("C", 3);
or
operator$.or(
$.equal("A", 1).and().equal("B", 2),
$.equal("C", 3)
);
and
operator$.and(
$.equal("A", 1),
$.equal("B", 2)
)
.or()
.equal("C", 3);
or
+ and
operators$.or(
$.and(
$.equal("A", 1),
$.equal("B", 2)
),
$.equal("C", 3)
);
$.in()
squery = $.in("Id", Arrays.asList("1", "2", "3"));
System.out.println(squery.toString()); // (Id IN (1,2,3))
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'
}
List<Note> notes = new Select().from(Note.class)
.where(squery.selection, squery.selectionArgs)
.execute();
$ ./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
ref. https://gist.github.com/yongjhih/e68184ec75d56d9e2804
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
Simple Query Builder
We found that com.infstory:squery demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.