Select Page

Author: vigorous-zhukovsky

Day Three

SOQL DISPLAY LIST OF ACCOUNTS ———————————————- LIST<ACCOUNT> LISTACC; LISTACC=NEW LIST<ACCOUNT>(); LISTACC=[SELECT...

Read More

Day Two

Collections Collections in Apex can be lists, sets, or maps. There is no limit on the number of items a collection can hold. However, there is a general limit on heap size. ListsA list is an ordered collection of elements that...

Read More

collection

COLLECTIONS: like an arrayTo Store a group of values1.List2.Set3.Map LIST:List<data type> variable-name;When we have to assign the value to a variable, instantiate(allocating some memory) it  ...

Read More

SOQL_Custom Objects

SOQL Joins Let’s look at what we can do with this data with some familiar JOIN patterns borrowed from SQL. This time, however, we will utilize them in SOQL and also use the power of relationship traversal in path...

Read More