- All Known Subinterfaces:
StatementBuilder.OngoingReadingAndWith,StatementBuilder.OngoingReadingAndWithWithSkip,StatementBuilder.OngoingReadingAndWithWithWhereAndOrder,StatementBuilder.OrderableOngoingReadingAndWith,StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere,StatementBuilder.OrderableOngoingReadingAndWithWithWhere
@API(status=STABLE,
since="2020.2.1")
public interface ExposesLoadCSV
Exposes methods to configure a
LOAD CSV clause.- Since:
- 2020.2.1
- Author:
- Michael J. Simons
-
Method Summary
Modifier and TypeMethodDescriptionStarts building aLOAD CSV.Starts building aLOAD CSV.
-
Method Details
-
loadCSV
Starts building aLOAD CSV.- Parameters:
from- TheURIto load data from. Any uri that is resolvable by the database itself is valid.- Returns:
- An ongoing definition of a
LOAD CSVclause
-
loadCSV
@NotNull @Contract(pure=true) LoadCSVStatementBuilder.OngoingLoadCSV loadCSV(URI from, boolean withHeaders) Starts building aLOAD CSV.- Parameters:
from- TheURIto 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 CSVclause
-