Hey guys,
Well, I have a table with just one column that is not a primary key. This column is only a text column.
My question is, the following error is because I do not have a primary key?
Here, my descriptor:
Well, I have a table with just one column that is not a primary key. This column is only a text column.
My question is, the following error is because I do not have a primary key?
Operation type 'fetch' not supported by this DataSource (ContractAnnexSignerDS)
Code:
<DataSource
ID="ContractAnnexSignerDS"
serverType="generic"
mappedBeanClassName="com.sca.server.transfer.ContractAnnexSignerTransferData"
serverConstructor="com.sca.core.client.datasource.ContractAnnexSignerDS">
<fields>
<field
name="name"
primaryKey="false"
type="text"
candEdit="true"
escapeHTML="true"
required="true"
length="300"/>
</fields>
</DataSource>
Comment