Data Store

Catalyst Cloud Scale Data Store is a cloud-based relational database management system that stores the persistent data of your application. This section covers the various methods that you can use to perform data-intensive operations in the Data Store such as fetching the metadata of the tables and columns, fetching row details, inserting new rows, updating rows, or deleting them.

Get a component instance

A component instance is an object that can be used to access the pre-defined configurations specific to a particular component. This process will not fire a server-side call.

The datastore_service reference can be created using the code snippet below. Also note that this instance will be used in multiple scenarios while performing database specific operations.

    
copy
#Get Data Store component instance import zcatalyst-sdk app = zcatalyst-sdk.initialize() datastore_service = app.datastore()

Last Updated 2023-09-03 01:06:41 +0530 +0530

RELATED LINKS

Data Store