Interface ExposesLoadCSV

    • Method Detail

      • loadCSV

        @NotNull
        @Contract(pure=true)
        default LoadCSVStatementBuilder.OngoingLoadCSV loadCSV​(java.net.URI from)
        Starts building a LOAD CSV.
        Parameters:
        from - The URI to load data from. Any uri that is resolvable by the database itself is valid.
        Returns:
        An ongoing definition of a LOAD CSV clause
      • loadCSV

        @NotNull
        @Contract(pure=true)
        LoadCSVStatementBuilder.OngoingLoadCSV loadCSV​(java.net.URI from,
                                                       boolean withHeaders)
        Starts building a LOAD CSV.
        Parameters:
        from - The URI to load data from. Any uri that is resolvable by the database itself is valid.
        withHeaders - Set to true if the csv file contains header
        Returns:
        An ongoing definition of a LOAD CSV clause