A
Atlas
Access 2003 + SPx, ADO 2.8, MS SQL Server 2000, .adp, bound form.
Into the load event, me.recordsource is set to
SELECT tblA.*, tblB.*
FROM tblA
INNER JOIN tblB ON tblA.IDB = tblB.IDB
None of the fileds of tblB is shown nor updated in the single form; tblB is
only joined for sorting purposes.
Now when inserting a new record from the form (basically in tblA) I get an
error:
"Cannot insert a non-null value into a timestamp column. Use INSERT with a
column list or with a default NULL for the timestamp column"
NOTE:
- Both tables allow NULL values into timestamps.
- None of the fields of tblB is "touched"
- removing the inner joined table ,solves the problem
Thanks
Into the load event, me.recordsource is set to
SELECT tblA.*, tblB.*
FROM tblA
INNER JOIN tblB ON tblA.IDB = tblB.IDB
None of the fileds of tblB is shown nor updated in the single form; tblB is
only joined for sorting purposes.
Now when inserting a new record from the form (basically in tblA) I get an
error:
"Cannot insert a non-null value into a timestamp column. Use INSERT with a
column list or with a default NULL for the timestamp column"
NOTE:
- Both tables allow NULL values into timestamps.
- None of the fields of tblB is "touched"
- removing the inner joined table ,solves the problem
Thanks