Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
tags:
- Community
- Enterprise Option
displayed_sidebar: docsEnglish
---

# Run Analytical Queries Overview

In this sub-category, you can learn how to set up and configure ScalarDB Analytics, an analytics component of ScalarDB. Then, you can run analytical queries over ScalarDB-managed databases, which are updated through ScalarDB transactions, and non-ScalarDB-managed databases.

To learn how to run analytical queries, see the following guides:

- [Run Analytical Queries on Sample Data by Using ScalarDB Analytics with PostgreSQL](scalardb-samples/scalardb-analytics-postgresql-sample/README.mdx)
41 changes: 41 additions & 0 deletions versioned_docs/version-3.X/add-scalardb-to-your-build.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
tags:
- Community
- Enterprise Standard
- Enterprise Premium
displayed_sidebar: docsEnglish
---

# Add ScalarDB to Your Build

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

The ScalarDB library is available on the [Maven Central Repository](https://mvnrepository.com/artifact/com.scalar-labs/scalardb). You can add the library as a build dependency to your application by using Gradle or Maven.

## Configure your application based on your build tool

Select your build tool, and follow the instructions to add the build dependency for ScalarDB to your application.

<Tabs groupId="build_tools" queryString>
<TabItem value="Gradle" label="Gradle">
To add the build dependency for ScalarDB by using Gradle, add the following to `build.gradle` in your application, replacing `<VERSION>` with the version of ScalarDB that you want to use:

```gradle
dependencies {
implementation 'com.scalar-labs:scalardb:<VERSION>'
}
```
</TabItem>
<TabItem value="Maven" label="Maven" default>
To add the build dependency for ScalarDB by using Maven, add the following to `pom.xml` in your application, replacing `<VERSION>` with the version of ScalarDB that you want to use:

```xml
<dependency>
<groupId>com.scalar-labs</groupId>
<artifactId>scalardb</artifactId>
<version><VERSION></version>
</dependency>
```
</TabItem>
</Tabs>
Loading