| Author |
Message |
|
|
Post subject: can't find get method
Posted: Nov 22, 2007 - 05:29 PM
|
|
Joined: Nov 22, 2007
Posts: 1
|
|
In my Base..DAO Classe, I keep getting an error, which tells me that it cannot find the method "get(Class, Long, Session)"
This is the code, generated by HibernateSynchronizer:
| Code: |
public com.timologic.database.CosiUserData get(java.lang.Long key, Session s)
{
//in this line, it cannot find the get(..
return (com.timologic.database.CosiUserData) get(getReferenceClass(), key, s);
}
|
In the same class, it also cannot find the load(Class, Long, Session) method:
| Code: |
public com.timologic.database.CosiUserData load(java.lang.Long key, Session s)
{
//in this line, it cannot find load(...
return (com.timologic.database.CosiUserData) load(getReferenceClass(), key, s);
}
|
Thanks for any help
Klaus |
|
|
| |
|
|
|
 |
|
|
| |