My model has 2 unique indexes. The primary key, and an alphanumeric id.
I only have the alphanumeric id when updating said record, so I need to add an "on duplicate key update" statement to the save function, but how do I do that?
And I do not want to query for the primary key first, as that would make the import process incredibly long and slow.

$this->Model->query($mySQL)– DavidYell Nov 15 '12 at 11:31