Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
COMMAND="SET PATH TO < Your Full Path to the Data Directory> ADDITIVE"
TITLE=""
CENTURY=ON
SAFETY=ON && I set ot OFF in the code
DELETED=ON
MVCOUNT=64000
STATUS BAR=ON && I set ot OFF in the code, if needed
HOURS=24 && My personal preference
SECONDS=ON && My personal preference also
CPDIALOG=OFF
RESOURCE=OFF
-No Visually Added table/s on the data environment[form & report]. instead, i created cursorsIf you visually added tables to form dataenvironment you have hardcoded paths to the database.
-No Visually Added table/s on the data environment[form & report]. instead, i created cursors
--Does this : makes any future error/s?
Why should that make future errors?
Concurrent use of tables
-setting Shared ON of tables : w/c is default
Yes.--Does this solves : having an error when accessing the table when more than one workstation uses the same table at the same time?
There's no need to manually lock, that's right, but even if you only make use of automatic locks you could have conflicts. What you say you make use of is buffers, that means you will commit buffer changes at some time concentrated, and every change made inbetween from starting to edit to committing changes has the petential to cause conflicts, if other workstations changed same records. And this is not about the conflict you could have at concurrent changes at the same split second, but on the scale of how many minutes users edit, before they save.Concurrent updating of records
-i've used buffer. locking of tables/records, i used: replace, delete-sql, append blank, tableupdate, insert-sql. these have auto locks.
--Does this solves : manually locking and unlocking of records/tables and no more public data session -> private data session needed?