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 app reference used in the code below is the Python object returned as a response during SDK initialization. You can create a new datastore_serviceinstance as shown below. Also note that this instance will be used in multiple scenarios while performing database specific operations.

    
copy
#Get Data Store component instance datastore_service = app.datastore()

Last Updated 2023-12-18 16:20:08 +0530 +0530

RELATED LINKS

Data Store