Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Mapping an object to a result set

Options
  • 03-09-2002 7:19pm
    #1
    Registered Users Posts: 21,264 ✭✭✭✭


    I'm sure this answer exists?

    Lets say I have ResultSet r that has field1, field2, field3, in it.

    Now I have an object with those fields. Is there a quick way to map the fields in the object to the resultset?

    Anything other then...

    this.field1 = r.getString("Field1");


Comments

  • Registered Users Posts: 2,781 ✭✭✭amen


    don't think so


    there is a GetResults method that you can use to map the results to an array


Advertisement