4

私は次の表を持っています-

@DatabaseTable(tableName="b", daoClass=B_DaoImpl.class)
public class B {

   @DatabaseField
   public String b1 ;

   public B(){
     // For Ormlite
   }
}

@DatabaseTable(tableName="a", daoClass=A_DaoImpl.class)
public class A {

   @DatabaseField
   public String a1 ;

   @DatabaseField(foreign=true)
   public B b;

   public A(){
     // For Ormlite
   }
}

これらのテーブルの場合、関連するDaoおよびDaoImplは次のとおりです。

public interface A_Dao extends Dao<A, String>{}
public interface B_Dao extends Dao<B, String>{}


public class B_DaoImpl extends BaseDaoImpl<User, String> implements B_Dao {

   public B_DaoImpl(ConnectionSource connectionSource) throws SQLException {
      super(connectionSource, B.class);
   }
}

public class A_DaoImpl extends BaseDaoImpl<User, String> implements A_Dao {

   public A_DaoImpl(ConnectionSource connectionSource) throws SQLException {
      super(connectionSource, A.class);
   }
}

データベースヘルパーは次のとおりです。

 public class DatabaseHelperImpl extends OrmLiteSqliteOpenHelper implements DatabaseHelper {

   private A_DaoImpl aDao = null;
   private B_DaoImpl bDao = null;

   public B_DaoImpl getBDao() throws SQLException {
       if (bDao == null) {
          bDao = getDao(B.class);
       }
       return bDao;
   }

   public A_DaoImpl getA() throws SQLException {
        if (aDao  == null ) {
          aDao = getDao(A.class);
        }
        return aDao;
   }
}

さて、電話をかけようとすると-

ADao aDao = databaseHelper.getA();

次のエラーでエラーになります。

 Could not call the constructor in class class A_DaoImpl

ここで、Aに外国のキーがない場合、つまりAにパブリックB bが含まれていない場合は、正常に機能します。ここで欠けているものはありますか?

事前にどうもありがとうございました。

4

1 に答える 1

6

例外スタックトレースの最後に、欠落している原因メッセージがあると思われます。たとえば、上記の例を複製すると、次のようになります。

java.sql.SQLException: Could not call the constructor in class class 
      com.j256.ormlite.table.CustomDaoTest$A_DaoImpl
  at com.j256.ormlite.misc.SqlExceptionUtil.create(SqlExceptionUtil.java:22)
  ...
Caused by: java.lang.reflect.InvocationTargetException
  at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  ...
Caused by: java.lang.IllegalArgumentException: Foreign field class
>>>>      com.j256.ormlite.table.CustomDaoTest$B does not have id field  <<<<<<
  at com.j256.ormlite.field.FieldType.configDaoInformation(FieldType.java:332)
  ...

クラスのA外部フィールドがあるため、idフィールドが必要です。外部フィールドにはIDフィールドが必要です。BB

確かAB、あなたのクラスの単純化されたバージョンなので、すべての原因情報を含む例外をもっと投稿する場合は、私の答えを適切に編集します。

于 2012-04-17T02:37:23.993 に答える