Delete entry from "Custom content type" (module)

Hi out there,

I created a module for CB, which contains some properties to represent little ads, easy to edit.

When deleting one entry I get the following error:

Error Messages:

`
could not insert/select ids for bulk delete

Caused by: java.sql.SQLException: [Macromedia][SQLServer JDBC Driver][SQLServer]Ambiguous column name 'contentID'.

`
The remove function that I´m using is: deleteByID()

Attached you find my model that I´m using.

`
component persistent=“true” entityname=“akiImageSelection” table=“aki_ImageSelection” batchsize=“25” cachename=“akiImageSelection” cacheuse=“read-write” extends=“contentbox.model.content.BaseContent” joinColumn=“contentID” discriminatorValue=“ImageSelection”{

// Properties
property name=“headline” notnull=“false” length=“100” default="";
property name=“description” notnull=“false” length=“200” default="";
property name=“link” notnull=“false” length=“255” default="";
property name=“linkDescription” notnull=“false” length=“200” default="";
property name=“keywords” notnull=“false” length=“200” default="";

/************************************** CONSTRUCTOR *********************************************/

/**

  • constructor
    */
    function init(){
    customFields = [];
    renderedContent = “”;
    allowComments = false;
    createdDate = now();
    contentType = “ImageSelection”;
    headline = “”;
    description = “”;
    link = “”;
    linkDescription = “”;
    keywords = “”;
    }

/************************************** PUBLIC *********************************************/

}
`

Am I missing something? Column name ContentID exists and I do not get why my delete is not working… Who can help?

Was this solved?

signature0.jpg

Luis F. Majano
CEO
Ortus Solutions, Corp
www.ortussolutions.com

ColdBox Platform: http://www.coldbox.org
Linked In: http://www.linkedin.com/pub/3/731/483
Blog: http://www.luismajano.com
IECFUG Manager: http://www.iecfug.com

Social: twitter.com/lmajano facebook.com/lmajano

No its still open. .