Yo que vos lo haría la comprobación de que la patente tenga el formato correcto (sin espacios) antes de grabarlo en la base de datos. Esto se hace desde Delphi en el BeforePost.
Ejemplo:
Código Delphi
[-]
procedure TDataModule.TCamionBeforePost(DataSet: TDataSet);
var
i : integer;
s : string;
begin
s := '';
if (DataSet.State = dsInsert) then
if (pos(' ',TCamionPATENTE.AsString)>0) then
begin
for i := 1 to Length(TCamionPATENTE.AsString) do
if (TCamionPATENTE.AsString[i]<>' ') then
s := s + TCamionPATENTE.AsString[i];
TCamionPATENTE.AsString := s;
end;
end;