Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The problem is that new records are specified with default values when the AllowNullValuesOnNewRow property is False (default). So, to correct the issue, you can set that property to false (just know you're going to have plenty of null values), or set the column back to DBNull.Value in the SetDefaultValues() method within the business object. Then, when the NULL value is inserted into the DB, the DefaultText is used, which is your fn{GetDate()}.
|