Packages

p

com.snowflake

snowpark_java

package snowpark_java

Type Members

  1. class DataFrame extends AnyRef

    Represents a lazily-evaluated relational dataset that contains a collection of Row objects with columns defined by a schema (column name and type).

    Represents a lazily-evaluated relational dataset that contains a collection of Row objects with columns defined by a schema (column name and type).

    A DataFrame is considered lazy because it encapsulates the computation or query required to produce a relational dataset. The computation is not performed until you call a method that performs an action (e.g. collect).

    Since

    0.8.0

  2. class Session extends AnyRef

    Establishes a connection with a Snowflake database and provides methods for creating DataFrames and accessing objects for working with files in stages.

    Establishes a connection with a Snowflake database and provides methods for creating DataFrames and accessing objects for working with files in stages.

    When you create a Session object, you provide configuration settings to establish a connection with a Snowflake database (e.g. the URL for the account, a user name, etc.). You can specify these settings in a configuration file or in a Map that associates configuration setting names with values.

    To create a Session from a file:

    
    Session session = Session.builder().configFile("/path/to/file.properties").create();
    
    

    Session contains functions to construct DataFrames like Session.table, Session.sql, and Session.read

    Since

    0.8.0

    See also

    com.snowflake.snowpark_java.DataFrame DataFrame

  3. class SessionBuilder extends AnyRef

    Provides methods to set configuration properties and create a Session.

    Provides methods to set configuration properties and create a Session.

    Since

    0.8.0

    See also

    com.snowflake.snowpark_java.Session Session

Ungrouped