LOGISTICSADDRESSCOUNTRYREGIONTRANSLATION country;
select forupdate country where country.LanguageId == 'en-us';
country.CountryRegionId = 'Canada';
country.ShortName = 'Canada';
country.LongName = 'Canada';
country.insert();
ttsBegin;
while select forupdate country where country.LanguageId == 'en-us' && country.CountryRegionId == 'Canada'
{
country.delete();
}
ttsCommit;
select forupdate country where country.LanguageId == 'en-us';
country.CountryRegionId = 'Canada';
country.ShortName = 'Canada';
country.LongName = 'Canada';
country.insert();
ttsBegin;
while select forupdate country where country.LanguageId == 'en-us' && country.CountryRegionId == 'Canada'
{
country.delete();
}
ttsCommit;
No comments:
Post a Comment