how do I commit changes in msaccess

G

Guest

After making changes to records in an MS Access table (not programatically,
rather graphically using the MS Access GUI), I want to "commit" the changes.
I'm successfully reading data in the table I made changes to using Perl w/
Win32::ODBC. But the only way I can see the changes is if I close the table
(in MSAccess), then rerun the perl script. I was hoping there would be a
"commit" button somewhere that I could use.
 
G

Guest

If you are using an Access form to make the changes, the changes made apply
to the form's recordset and are not applied to the underlying table until
either the form is closed or requeried.
 
V

Van T. Dinh

If you simply use the DatasheetView of the Table to enter data in the Table,
you can use the shortcut key Shift + Enter to save the Record into the
Table.

Alternatively, you can use the Menu command Records / Save (which can be
accessed using Alt / R / O). In addition, you can simply move the focus to
another the row and the previously-focused row will be automatically
updated.
 
V

Van T. Dinh

Of course ...

However, from what Dave Gauthier wrote, he uses Perl w/ Win32::ODBC and I
think he is more interested in *testing* his Perl programming. My feeling
is that Dave only uses JET to store data, not Access as the primary
graphical user interface!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top