"AzureTables" (Data Connection)
"AzureTables" (Data Connection)
Details
- Use DataConnectionObject to represent data located in an Azure Table in Wolfram Language.
- Import can be used to retrieve data from a DataConnectionObject .
Properties
"ConnectionName" "AzureTables"
"Location" query given as a string
"Redownload" whether to redownload cache files
"Account" Azure storage account name
"Container" container the table is located in
"query" Azure ODATA filter specification
Account Setting & Authentication
Automatic attempt to use saved credentials or give a dialog
"Dialog" give authentication parameters via a dialog
assoc provide explicit credentials
"SASToken" SAS token
Examples
open all close allBasic Examples (2)
Create a DataConnectionObject to data located in an Azure table:
DataConnectionObject[
<|"ConnectionName" -> "AzureTables", "Account" -> "wolframdataconnection", "Container" -> "samples", "Location" -> "PartitionKey eq 'a'" |>]Retrieve data from an Azure table using Import :
Import@DataConnectionObject[
<|"ConnectionName" -> "AzureTables", "Account" -> "wolframdataconnection", "Container" -> "samples", "Location" -> "PartitionKey eq 'a'" |>]Authentication (1)
Give credentials to AzureTables:
Import@DataConnectionObject[
<|"ConnectionName" -> "AzureTables", "Account" -> "wolframdataconnection", "Container" -> "samples", "Location" -> "PartitionKey eq 'a'"|>, Authentication -> <|"SASToken" -> "token"|>]See Also
Data Connections: AzureBlobStorage AzureFiles AmazonS3 Dropbox Kaggle OneDrive