Skip to main content
Version: V1.1.0

countCollection - Count the number of collections

The countCollection() method is used to count the number of collections in the database.

info

This API can only be used when connected with SeekdbClient. For more information about SeekdbClient, see SeekdbClient.

Prerequisites

Request parameters

countCollection()

Request example

import { SeekdbClient } from "seekdb";

// 1. Connect
const client = new SeekdbClient({
host: "127.0.0.1",
port: 2881,
user: "root",
password: "",
database: "test",
});

const count = await client.countCollection();
console.log(count);

Response parameters

None

Response example

2