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 field when is updated as well with the current date and time:
1, "Here", 17-3-2021 12:42
Is there a way to do this in Visual Foxpro 9?
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 field when is updated as well with the current date and time:
1, "Here", 17-3-2021 12:42
Is there a way to do this in Visual Foxpro 9?