Errors:
Code: Select all
PA.exe raised exception class EUniError with message 'validation error for column "TRUSTEDDOMAINS"."DSDOMAINKINDS", value "4294967330"'.
PA.exe raised exception class EIBCError with message 'validation error for column "TRUSTEDDOMAINS"."TRUSTTYPE", value "4294967298"Code: Select all
ASql 'insert into trusteddomains (netbiosname, domainid, dnsdomainname, domainsid, dc, dsdomainkinds, trusttype) values (:netbiosname, :domainid, :dnsdomainname, :domainsid, :dc, :dsdomainkinds, :trusttype)'
AParams (
'SMB03', 1, 'smb03.local',
'S-1-5-21-3188387342-845300696-3033364349',
'Offline or Unavailable', 34, 2)Code: Select all
SQL Execute: insert into trusteddomains (netbiosname, domainid, dnsdomainname, domainsid, dc, dsdomainkinds, trusttype) values (:netbiosname, :domainid, :dnsdomainname, :domainsid, :dc, :dsdomainkinds, :trusttype)
:netbiosname(WideString[4])='EMCO'
:domainid(LargeInt)=1
:dnsdomainname(WideString[10])='emco.local'
:domainsid(WideString[41])='S-1-5-21-2788477859-2423432321-3061298541'
:dc(WideString[22])='Offline or Unavailable'
:dsdomainkinds(LongWord)=34
:trusttype(LongWord)=2
Pending- occurs only in Win32 not Win64 against the same db..
- occurs in a thread, but I haven't and wont' bother to test outside of a thread since a NON parameterized Insert works
- error is in both FBv3 and FBv4
Code: Select all
CREATE DOMAIN DWORD AS
BIGINT
check ( value between 0 and 4294967295 );