skills.vishalvoidskills/vishalvoid
Technical & DevelopmentIntermediate

azure-data-tables-java

NoSQL key-value table storage

Developer Setup

Setup & Installation

bash
npx skills add https://github.com/microsoft/skills --skill azure-data-tables-java

Overview

What This Skill Does

Java SDK for Azure Table Storage and Cosmos DB Table API. Provides clients for managing tables and entities using key-value NoSQL storage with partition and row key addressing.

Application

When to use this Skill

Documentation

Show Skills.md file

Azure Tables SDK for Java

Build table storage applications using the Azure Tables SDK for Java. Works with both Azure Table Storage and Cosmos DB Table API.

Installation

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>azure-data-tables</artifactId>
  <version>12.6.0-beta.1</version>
</dependency>

Client Creation

With Connection String

import com.azure.data.tables.TableServiceClient;
import com.azure.data.tables.TableServiceClientBuilder;
import com.azure.data.tables.TableClient;

TableServiceClient serviceClient = new TableServiceClientBuilder()
    .connectionString("<your-connection-string>")
    .buildClient();
Lines 1 - 27 of 340

Recommendations

Explore other random skills

All skillsMy patterns