1
00:00:00,210 --> 00:00:06,900
In this video, we are going to see how we compare from particle operations into dynamic DB Table B

2
00:00:06,900 --> 00:00:09,090
using a SDK libraries.

3
00:00:09,630 --> 00:00:16,620
As you know that Amazon Dynamic DB supports particle scale compatible language to select insert update

4
00:00:16,620 --> 00:00:18,870
and delete data operations in Dynamic DB.

5
00:00:18,960 --> 00:00:25,650
So we can use particle operations and we can easily interrupt dynamic DB tables and run ad hoc queries

6
00:00:25,650 --> 00:00:29,580
on the Dynamo DB table with using the SDK libraries.

7
00:00:29,580 --> 00:00:35,430
So particle operations provide the same availability, latency and performance as the other dynamo DB

8
00:00:35,460 --> 00:00:36,870
data, plane operations.

9
00:00:37,080 --> 00:00:42,120
So in this video we will learn how to use particle MTB bits using SRC libraries.

10
00:00:42,120 --> 00:00:45,930
Basically particle has two main command in this object.

11
00:00:45,930 --> 00:00:51,980
So if you open the documentation, you can see that we have executed statement command and we have batch

12
00:00:51,990 --> 00:00:53,370
execute statement command.

13
00:00:53,370 --> 00:00:55,950
So we will start with the execute statement command.

14
00:00:55,950 --> 00:01:03,000
Basically, this command is getting as a parameter of the SQL related scripts.

15
00:01:03,000 --> 00:01:10,440
Basically, this operation allows us to perform, read and Singleton writes on data stored in the Dynamo

16
00:01:10,440 --> 00:01:11,820
Dynamo DB table.

17
00:01:11,850 --> 00:01:15,750
So for particle reads that means select statements.

18
00:01:15,750 --> 00:01:21,600
We can perform the Select Statement with using the Execute Statement Command and also perform, update

19
00:01:21,600 --> 00:01:22,830
and insert commands.

20
00:01:22,890 --> 00:01:25,770
So let's get started how we can implement this.

21
00:01:25,770 --> 00:01:29,970
But before that, check the batch execute statement.

22
00:01:29,970 --> 00:01:36,240
Also, it is the same structure, but this time it is requesting get the items.

23
00:01:36,240 --> 00:01:40,440
So here you can see the batch execute statement command.

24
00:01:40,440 --> 00:01:47,430
So in this command allows us to perform batch read and write operations on data stored in the DB table.

25
00:01:47,460 --> 00:01:52,050
We can compare the input values from here and also these here.

26
00:01:52,050 --> 00:01:54,330
So this is the single execute statement.

27
00:01:54,330 --> 00:02:01,170
See the properties in here and this is the batch execute statement, command input, see that this is

28
00:02:01,170 --> 00:02:04,830
properties are stored in the statements as array.

29
00:02:05,100 --> 00:02:10,230
So in the next video we will see these two command in order to perform current operations using particular.
