Я делаю поиск данных из базы данных h2.моя проблема в q.setClass ().здесь я пытаюсь установить таблицу chatUsers.class, база данных имеет тот же класс, но это показывает, что нет таблицы ChatUsers.Так что я могу сделать для этого ??
Если я не пишу q.setClass ().тогда он дает данные, но есть проблема в том, что тогда я не смог получить список этого класса.
Класс ChatUser
import javax.jdo.JDOHelper;
import javax.jdo.PersistenceManager;
import javax.jdo.PersistenceManagerFactory;
import javax.jdo.Query;
import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.annotations.Persistent;
import javax.jdo.annotations.PrimaryKey;
import java.util.List;
import java.util.Properties;
@PersistenceCapable(detachable="true")
public class ChatUsers {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.INCREMENT)
int id;
String user;
String mobileNo;
String email;
String password;
public ChatUsers(String user, String password, String mobileNo, String email) {
this.user = user;
this.mobileNo = mobileNo;
this.email = email;
this.password = password;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public String getMobileNo() {
return mobileNo;
}
public void setMobileNo(String mobileNo) {
this.mobileNo = mobileNo;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
Получение логики
public static List<ChatUsers> getAllUsersList() {
PersistenceManagerFactory pmf = JDOHelper.getPersistenceManagerFactory(setProperties());
PersistenceManager pm = pmf.getPersistenceManager();
List<ChatUsers> chatUsersList = null;
pm.currentTransaction().begin();
try {
Query q = pm.newQuery("javax.jdo.query.SQL","SELECT * FROM `CHATUSERS`");
q.setClass(ChatUsers.class);//This line has error
chatUsersList = (List<ChatUsers>) q.execute();
}catch (Exception ex)
{
System.out.println(ex);
}
return chatUsersList;
}
Код ошибки
javax.jdo.JDOUserException: Persistent class "ChatUsers" has no table in the database, but the operation requires it. Please check the specification of the MetaData for this class.
NestedThrowables:
org.datanucleus.store.rdbms.exceptions.NoTableManagedException: Persistent class "ChatUsers" has no table in the database, but the operation requires it. Please check the specification of the MetaData for this class.