com.yahoo.squidb.sql.Query.requestValidation()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(4.9k)|赞(0)|评价(0)|浏览(252)

本文整理了Java中com.yahoo.squidb.sql.Query.requestValidation方法的一些代码示例,展示了Query.requestValidation的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.requestValidation方法的具体详情如下:
包路径:com.yahoo.squidb.sql.Query
类名称:Query
方法名:requestValidation

Query.requestValidation介绍

[英]Mark that this query should be checked for syntactic anomalies in the WHERE clause (e.g. if a raw selection was applied)
[中]标记该查询应在WHERE子句中检查语法异常(例如,如果应用了原始选择)

代码示例

代码示例来源:origin: yahoo/squidb

  1. /**
  2. * Build a {@link Query} combining this object's internal state with the arguments passed. If a
  3. * {@link ProjectionMap} is set, the projection elements will be evaluated and transformed accordingly. If the
  4. * sortOrder is null or empty, the default order will be used (if one was set).
  5. *
  6. * @param projection the raw column names to be selected
  7. * @param selection a raw selection string
  8. * @param selectionArgs array of strings which substitute replaceable arguments in the selection string
  9. * @param sortOrder a raw ordering clause
  10. * @return a {@link Query} using the projection, selection, selection args, and sort order
  11. */
  12. public Query build(String[] projection, String selection, String[] selectionArgs, String sortOrder) {
  13. Query query = Query.select(computeProjection(projection)).from(dataSource);
  14. boolean hasUserSelection = !SqlUtils.isEmpty(selection);
  15. if (hasUserSelection) {
  16. query.where(Criterion.fromRawSelection(selection, selectionArgs));
  17. }
  18. if (!SqlUtils.isEmpty(sortOrder)) {
  19. query.orderBy(Order.fromExpression(sortOrder));
  20. } else if (defaultOrder != null && defaultOrder.length > 0) {
  21. query.orderBy(defaultOrder);
  22. }
  23. if (strictMode && hasUserSelection) {
  24. query.requestValidation();
  25. }
  26. return query;
  27. }

代码示例来源:origin: yahoo/squidb

  1. @Override
  2. public void run() {
  3. try {
  4. blockThread.acquire();
  5. Query query2 = Query.select().from(subqueryTable);
  6. query2.requestValidation();
  7. SquidCursor<Thing> cursor = database.query(Thing.class, query2);
  8. cursor.close();
  9. blockCriterion.release();
  10. } catch (InterruptedException e) {
  11. fail("InterruptedException");
  12. }
  13. }
  14. });

代码示例来源:origin: yahoo/squidb

  1. query.requestValidation();

代码示例来源:origin: yahoo/squidb

  1. public void testNeedsValidationUpdatedByQueryFunction() {
  2. Query subquery = Query.select(Function.max(Thing.ID)).from(Thing.TABLE).where(Criterion.literal(123));
  3. subquery.requestValidation();
  4. assertTrue(subquery.compile(database.getCompileContext()).sql.contains("WHERE (?)"));
  5. Query baseTestQuery = Query.select().from(Thing.TABLE).where(Thing.FOO.isNotEmpty()).freeze();
  6. assertFalse(baseTestQuery.needsValidation());
  7. Query testQuery = baseTestQuery.selectMore(subquery.asFunction());
  8. assertTrue(testQuery.compile(database.getCompileContext()).needsValidation);
  9. assertTrue(testQuery.sqlForValidation(database.getCompileContext()).contains("WHERE ((?))"));
  10. }

代码示例来源:origin: yahoo/squidb

  1. public void testNeedsValidationUpdatedBySubqueryTable() {
  2. Query subquery = Query.select(Thing.PROPERTIES).from(Thing.TABLE).where(Criterion.literal(123));
  3. subquery.requestValidation();
  4. assertTrue(subquery.compile(database.getCompileContext()).sql.contains("WHERE (?)"));
  5. Query baseTestQuery = Query.select().from(Thing.TABLE).where(Thing.FOO.isNotEmpty()).freeze();
  6. assertFalse(baseTestQuery.needsValidation());
  7. Query testQuery = baseTestQuery.from(subquery.as("t1"));
  8. assertTrue(testQuery.compile(database.getCompileContext()).needsValidation);
  9. assertTrue(testQuery.sqlForValidation(database.getCompileContext()).contains("WHERE ((?))"));
  10. testQuery = baseTestQuery.innerJoin(subquery.as("t2"), (Criterion[]) null);
  11. assertTrue(testQuery.compile(database.getCompileContext()).needsValidation);
  12. assertTrue(testQuery.sqlForValidation(database.getCompileContext()).contains("WHERE ((?))"));
  13. testQuery = baseTestQuery.union(subquery);
  14. assertTrue(testQuery.compile(database.getCompileContext()).needsValidation);
  15. assertTrue(testQuery.sqlForValidation(database.getCompileContext()).contains("WHERE ((?))"));
  16. }

代码示例来源:origin: com.yahoo.squidb/squidb

  1. /**
  2. * Build a {@link Query} combining this object's internal state with the arguments passed. If a
  3. * {@link ProjectionMap} is set, the projection elements will be evaluated and transformed accordingly. If the
  4. * sortOrder is null or empty, the default order will be used (if one was set).
  5. *
  6. * @param projection the raw column names to be selected
  7. * @param selection a raw selection string
  8. * @param selectionArgs array of strings which substitute replaceable arguments in the selection string
  9. * @param sortOrder a raw ordering clause
  10. * @return a {@link Query} using the projection, selection, selection args, and sort order
  11. */
  12. public Query build(String[] projection, String selection, String[] selectionArgs, String sortOrder) {
  13. Query query = Query.select(computeProjection(projection)).from(dataSource);
  14. boolean hasUserSelection = !SqlUtils.isEmpty(selection);
  15. if (hasUserSelection) {
  16. query.where(Criterion.fromRawSelection(selection, selectionArgs));
  17. }
  18. if (!SqlUtils.isEmpty(sortOrder)) {
  19. query.orderBy(Order.fromExpression(sortOrder));
  20. } else if (defaultOrder != null && defaultOrder.length > 0) {
  21. query.orderBy(defaultOrder);
  22. }
  23. if (strictMode && hasUserSelection) {
  24. query.requestValidation();
  25. }
  26. return query;
  27. }

相关文章