0
How to set parameters dynamically to prepared statement using jdbc?
Means i want to have a method which can do that for me.
2 ответов
+ 2
Since a prepared statement takes a string param, you can just create a method which does the task for you by changing the values of the “sql” command when executing.
For example if you are creating a table you can create a method which takes the param of the Connection, tableName, type of main key etc etc
0
Hi Andy
Thanks for the response. Can you give small example using that with jdbc