stmt=con.createStatement();
kindly explain this and how we are creating instance of interfaces
kindly explain me the instance of interfaces are not possible, but how it is done then
stmt=con.createStatement();
kindly explain this and how we are creating instance of interfaces
kindly explain me the instance of interfaces are not possible, but how it is done then
createStatement()
returns an instance of a concrete class that implements the Statement
interface.