Cannot Insert DEFAULT in Timestamp Column

Problem: Cannot insert DEFAULT in the timestamp column using the Object API.

Explanation: DEFAULT is a Microsoft SQL keyword, and cannot be set by the client.

Solution: Use this create operation instead:

insert into sql_date (c_datetime, c_smalldt) values(:dt1, :dt2)