Skip to content
Advertisement

How to get SQL prepared statement based on user input (scanner)

I have difficulties with creating prepared statement which SELECT and print out rows which fulfill condition:

“?” user input – String e.g 2019-07-09 and 2019-08-16

Im able to SELECT* with following method:

and for example insert new rows based on user input by scanner for example:

The problem is how to combine these two methods and be able to SELECT rows in DB (and than print them out) based on user scanner input.

My way of thinking: 1. We create reservation object based on user input

  1. Created object is a parameter of checkDatesForReservation method
  2. SQL where two parameters “?” means dates from user input
  3. I need while loop to find all rows
  4. At the end I need return a List

Advertisement

Answer

Please refer to JDBC PreparedStatement example – Select list of the records

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement