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
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

getResultMap

  • 29-08-2007 12:25pm
    #1
    Registered Users Posts: 1,558 ✭✭✭


    I was looking to find out more about getResultMap.
    I think its part of java.util.map and when called returns a map.

    Im unsure about the parmaters it takes in and how many it takes in and what type it returns.

    Id like to find out more info about it but there seems to be very little about it on the sun java site.

    Can you help?


Comments

  • Registered Users, Registered Users 2 Posts: 6,240 ✭✭✭hussey


    It's not part of java.util.Map (http://java.sun.com/j2se/1.4.2/docs/api/)
    resultsMap sounds more that a DB thing ..

    have you got more info? code etc

    if it is a DB thing, you prob don't pass any params in, it might just return the results after an execute etc <guess>


  • Registered Users, Registered Users 2 Posts: 1,127 ✭✭✭smcelhinney


    I'd say this is a custom method. There's nothing on java.sun.com about it.

    What exactly is it that you want to do? Key-pair values?

    check out HashMap.get() but it kind of implies that you know what you're looking for from the Map.

    If you'd like to tell us exactly what you want to achieve, that would be better. You may not need a getResultMap method at all.

    EDIT: Just re-read your original post. Map.get() returns an object, cast that to a Map object, and thats prob what you're looking for. eg.


  • Registered Users Posts: 1,558 ✭✭✭quinnd6


    Its okay I think you're right.
    It is defined in the class and isn't a part of the java library.


Advertisement