I have this multiuser VFP 9 that has grown uncultivated for the last decade, and the idea for long time has been to migrate all the data to SQL Server. After some time normalizing the old database, the migration is complete, but there is this tiny thing that is resisting (and this probably is...
Excellent!
Thank you for your input. What I was missing was setting the table's default value for this particular use:
ALTER TABLE <ANYTABLE> [ADD/ALTER] <DATETIMEFIELD> DATETIME NOT NULL DEFAULT DATETIME().
In other platforms, like SQL Server, you can create a table with automatic timestamp, like this:
create table sample (what integer, where char(8), when datetime default current_timestamp)
Thus, when you insert data in the tabke, like:
insert into sample (what, where) values (1, "Here")
The...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.