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-javanpx skills add https://github.com/microsoft/skills --skill azure-data-tables-javaOr paste this URL into your assistant to install:
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
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
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