About 81,500 results
Open links in new tab
  1. PL/SQL Collections and Records - Oracle Help Center

    PL/SQL lets you define two kinds of composite data types: collection and record.

  2. Collection (Java Platform SE 8 ) - Oracle

    More generally, implementations of the various Collections Framework interfaces are free to take advantage of the specified behavior of underlying Object methods wherever the implementor …

  3. Collections - Oracle

    A collection is an ordered group of elements, all of the same type (for example, the grades for a class of students). Each element has a unique subscript that determines its position in the …

  4. Collection Methods - docs.oracle.com

    A collection method is a PL/SQL subprogram—either a function that returns information about a collection or a procedure that operates on a collection. Collection methods make collections …

  5. PL/SQL Collections and Records - Oracle

    To create collections, you define a collection type, then declare variables of that type. You can define TABLE and VARRAY types in the declarative part of any PL/SQL block, subprogram, or …

  6. 5 Using PL/SQL Collections and Records - Oracle

    To use collections in an application, you define one or more PL/SQL types, then define variables of those types. You can define collection types in a procedure, function, or package. You can …

  7. Collection (Java SE 17 & JDK 17) - Oracle

    Although they technically aren't collections, instances of Iterator and ListIterator can also allow modifications to be written through to the backing collection, and in some cases, modifications …

  8. Collections (Java Platform SE 8 ) - Oracle

    This class consists exclusively of static methods that operate on or return collections. It contains polymorphic algorithms that operate on collections, "wrappers", which return a new collection …

  9. Collection Types - docs.oracle.com

    PL/SQL has three collection types—associative array, VARRAY (variable-size array), and nested table.

  10. Using PL/SQL Collections and Records - Oracle

    What are PL/SQL Collections and Records? Collections and records are composite types that have internal components that can be manipulated individually, such as the elements of an …