Code Monkey home page Code Monkey logo

query_builder's People

Contributors

dcaballeroc avatar nepalez avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

query_builder's Issues

`order` modifier not working.

When using the #order modifier, it generates a CQL query like this:

SELECT * FROM test_keyspace.notifications ORDER BY (user_id DESC)

But this generates syntax error in CQL 3.3 as it does not expecting ORDER BY user_id DESC instead.

Bind Parameters

I don't see anything, but I wanted to ask first: is there any way to generate statements with parameters (either positional or named) with QueryBuilder?

I'm thinking something like

query = QueryBuilder::CQL.keyspace("foo").table("bar")
  .select
  .where(id: cql_parameter(:id))
# query.to_s would now be "SELECT * FROM foo.bar WHERE id: :id"
driver.execute(query, arguments: {id: 1})

This would allow us to easily cache prepared statements...

Add helpers to update collections

Allow writing CQL chunks like: "SET roles = {'admin'} + roles", SET roles = roles - ['admin'] etc.
This should be done via cql_add and cql_diff (maybe cql_remove) functions.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.