All Projects → lawrencekgrant → vscode-cql

lawrencekgrant / vscode-cql

Licence: MIT license
CQL language support for VS Code.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to vscode-cql

jelass
Janus + Elastic Search + Cassandra docker container with SSL Client Certificates implemented.
Stars: ✭ 13 (-13.33%)
Mutual labels:  cassandra, cassandra-cql, cassandra-database
diesel
No description or website provided.
Stars: ✭ 30 (+100%)
Mutual labels:  cassandra, cassandra-cql
cassandra-client
Cassandra 3 GUI client
Stars: ✭ 49 (+226.67%)
Mutual labels:  cassandra, cassandra-database
Cassandra-Data-Modeling
Basic Rules of Cassandra Data Modeling
Stars: ✭ 29 (+93.33%)
Mutual labels:  cassandra, cassandra-cql
cassandra-nginx-cdn
Some config files and POC code to use Apache Cassandra as distributed storage for HLS chunks accross multiple datacenters and scripts for converting/transcoding UDP MPEG-TS to HLS and vice versa. The idea is take from Globo.com’s Live Video Platform for FIFA World Cup ’14.
Stars: ✭ 24 (+60%)
Mutual labels:  cassandra, cassandra-database
cassandra-top
Cassandra top command to monitor cluster without Datastax OpsCenter, and log nodetool administrative commands
Stars: ✭ 13 (-13.33%)
Mutual labels:  cassandra, cassandra-database
AspNetCore.Identity.Cassandra
Cassandra Storage Provider for ASP.NET Core Identity
Stars: ✭ 13 (-13.33%)
Mutual labels:  cassandra, cassandra-database
ecchronos
Ericsson distributed repair scheduler for Apache Cassandra
Stars: ✭ 22 (+46.67%)
Mutual labels:  cassandra, cassandra-database
fast-arrow
A VSCode snippet to write JS arrow function really fast
Stars: ✭ 18 (+20%)
Mutual labels:  vscode-snippets
newsql nosql library
整理12种数据库相关资料,mysql,mariaDB,Percona Server,MongoDB,Redis,RocksDB,TiDB,CouchDB,Cassandra,TokuDB,MemDB,Oceanbase
Stars: ✭ 270 (+1700%)
Mutual labels:  cassandra
battlestax
BattleStax is a stateful JAMStack game that is wholesome fun for the entire crew.
Stars: ✭ 32 (+113.33%)
Mutual labels:  cassandra
janusgraph-deployement
A dockerized environment For [JanusGraph + ElasticSearch + Cassandra + GraphExp]
Stars: ✭ 16 (+6.67%)
Mutual labels:  cassandra
dockerfiles
Multi docker container images for main Big Data Tools. (Hadoop, Spark, Kafka, HBase, Cassandra, Zookeeper, Zeppelin, Drill, Flink, Hive, Hue, Mesos, ... )
Stars: ✭ 29 (+93.33%)
Mutual labels:  cassandra
testcafe-snippets
Code snippets for TestCafe
Stars: ✭ 54 (+260%)
Mutual labels:  vscode-snippets
ui5-schemas
🚀 UI5 Schemas allows you to develop SAPUI5/OpenUI5 XML at a maximum convenience. It downloads, upgrades and sets up SAPUI5/OpenUI5 XML schemas for a better development experience in your favorite IDE (if it is WebStorm ;).
Stars: ✭ 50 (+233.33%)
Mutual labels:  intellisense
crystal-cassandra
A Cassandra driver for Crystal
Stars: ✭ 20 (+33.33%)
Mutual labels:  cassandra
Vscode-Emoji-Snippets
Visual Code Emoji Snippets 🚀😎
Stars: ✭ 56 (+273.33%)
Mutual labels:  vscode-snippets
cassandra-web
cassandra web ui
Stars: ✭ 61 (+306.67%)
Mutual labels:  cassandra
vscode-icon-fonts
Snippets for popular icon fonts such as Font Awesome, Ionicons, Glyphicons, Octicons, Material Design Icons and many more!
Stars: ✭ 33 (+120%)
Mutual labels:  vscode-snippets
workshop-intro-to-cassandra
Learn Apache Cassandra fundamentals in this hands-on workshop
Stars: ✭ 208 (+1286.67%)
Mutual labels:  cassandra

CQL support for VS Code

This is a language extension for the Cassandra CQL language.

This is an extension for working with Cassandra CQL. This extension supports syntax highlighting. Table definitions found will allow intellisense to work. This extension will find symbols for tables and columns. All keywords have intellisense. There are snippets for basic CQL statements.

Features

  • Currently Supports: - Syntax Highlighting - Brackets - Comments - Intellisense - Keywords (SELECT, ALTER, UUID, etc) - Table Names* - Column Names* - Snippets (SELECT, CREATE TABLE|KEYSPACE|TRIGGER|TYPE|INDEX, UPDATE) - CQL Statement Execution - Keybinding for CQL Statement Execution - Scanning for objects - View schema
    • Tree view
    • Static tree

CQL Statement Execution

Execute SQL Statement:

Pressing [Shift+F5] to execute a CQL statement or pressing [F1] and then typing 'exec' to find the "Execute CQL Statement" command. In either case, if text has been highlighted that text will be sent to the configured Cassandra endpoint; if there is no text selected then the entire document will be sent to Cassandra to run. Below you will find instructions to configure the extension to connect to your Cassandra endpoint.

Configuration:

If your Cassandra endpoint is at 127.0.0.1:9042 (or localhost), then there is nothing to configure. If you have a remote endpoint then you will want to set the following keys in your user configuration.

  • Configuration Keys
  • cql.address (string): IPAddress or hostname of Cassandra endpoint for the Execute command. Default is 127.0.0.1.
  • cql.port: (integer): Port of the Cassandra endpoint for the Execute command. Default is 9024.
  • cql.scanOnStartup: (boolean): Scan the cluster in the cql.connection value for non-system objects at startup. Default is false.
  • cql.connection (object): Connection configuraiton object. This overrides cql.address and cql.port and is the new default configuration. Example { "contactPoints": ["127.0.0.1"], "hosts": ["127.0.0.1"] }
  • cql.resultStyle (object): Configures where and how you will view results. There are two options:
  • format: json or tabular
  • location: If set to output results are routed to the CQL Output window instead of a pane.

For more information

Shout Outs:

Build Status

Build Status

Have fun!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].