Our current environment is Delphi4 ( Update 3), SQL Server 7.0 SP2,
and Windows NT 4.0/Windows 98.
The middle-tier is written so that it handles all insert, update, and
delete operations explictly, within the BeforeUpdateRecord event of
each TProvider.
Anyone have a clue what might be causing the "Catastrophic Failures"
we are getting?
Xavier Pacheco (TeamB)
Xapware Technologies Inc.
www.xapware.com
www.xapxone.com
------------------------------------------------
Sorry but TeamB cannot answer support
questions received via email.
P.S. I am using Delphi 5.0
Good Luck.
Omar Bondogji
Graham Hepper <graham.hep...@NOSPAM.veco.com> wrote in message
news:396e25c4...@forums.borland.com...
Pete.
DataSource := GetDataBroker(sDatasetName).FDataSource;
The GetDataBroker function returns an Object which has a property
Datasource. I found out when you assigned
an object in this manner wherein the container or parent object of the
property FDataSource is nil this exception will appear. I have resolve this
problem by rewriting it to something like this.
DataBroker := GetDataBroker(sDatasetName);
if Assigned(DataBroker) then
DataSource := DataBroker.FDataSource
else raise Exception.Create('...');
So, I think to best way to solve this problem is to really test your
application server.
Roberto Icardi (Essedi) <roberto...@hotmail.com> wrote in message
news:8l45e4$np...@bornews.borland.com...