Skip to content

Commit b7f3016

Browse files
authored
Add remarks on large data set fetch.
1 parent 1a68907 commit b7f3016

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ The result of this action is a list of objects of type Row, which is also the ou
3939
The result of this action is either an Integer or a Long value which usually represents the amount of affected rows.
4040

4141
# Remarks
42-
It is a good practice to avoid having user input as part of your dynamic SQL queries and statements. In the future we will support using parameters with the queries or statements.
42+
* It is a good practice to avoid having user input as part of your dynamic SQL queries and statements. In the future we will support using parameters with the queries or statements.
43+
* Avoid fetching large amounts of data as it can lead to memory issues because all the ResultSet data is being loaded into memory at once.
4344

4445
# Links to common JDBC drivers
4546
* [Amazon Redshift](http://docs.aws.amazon.com/redshift/latest/mgmt/configure-jdbc-connection.html#download-jdbc-driver)

0 commit comments

Comments
 (0)