My Question might be very simple, but i can't find any answer for it.
If i execute statement.execute("LOAD DATA ...")
will it generate return keys exactly like INSERT
Statement,
If i do not wish to recieve any return value from the LOAD DATA
statement, should i execute:
statement.execute("LOAD DATA ...",Statement.NO_GENERATED_KEYS)
or is it unnecessary since statement.execute("LOAD DATA ...")
will not return any keys in this case?
Statement.executeUpate()
for LOAD DATA
Statement.executeUpdate("LOAD DATA..", Statement.NO_GENERATED_KEYS)