Day Three
SOQL DISPLAY LIST OF ACCOUNTS ———————————————- LIST<ACCOUNT> LISTACC; LISTACC=NEW LIST<ACCOUNT>(); LISTACC=[SELECT...
Read MorePosted by vigorous-zhukovsky | May 19, 2020 | Apex |
SOQL DISPLAY LIST OF ACCOUNTS ———————————————- LIST<ACCOUNT> LISTACC; LISTACC=NEW LIST<ACCOUNT>(); LISTACC=[SELECT...
Read MorePosted by vigorous-zhukovsky | May 19, 2020 | Apex |
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 MorePosted by vigorous-zhukovsky | May 19, 2020 | Apex |
Data Types In Apex, all variables and expressions have a data type, such as sObject, primitive, or...
Read MorePosted by vigorous-zhukovsky | May 4, 2020 | Apex-LIB |
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 MorePosted by vigorous-zhukovsky | May 4, 2020 | SOQL |
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
Recent Comments