G
Guest
Hi
The title probably doesn't make much sense so I'll attempt to clarify. I'm pretty knew to programming in Access and I'm trying to blend some of the automatic wizard stuff with hand coded parts
My problem is: I have a table that is linked to my postgresql database and when I finish typing a record into the table it sends it to the database as soon as I'm finished. This is good but I'd rather have it so that I can have Access not send any messages to the database until all the data in that table has been entered and not just one row of the data. I tried using the before update event but that doesn't block the SQL commands from being sent
Ideally, I'd like to get the command that Access was going to send to my database and be able to edit it and check it before it's sent and preferrably, I'd like to be able to have Access not send the message and instead send it myself
The only option I see is that I have to avoid using linked tables and instead just collect the info in my own tables and send the data myself. This would work but would probably double or triple the development time
Thanks for any help you guys can give me,
The title probably doesn't make much sense so I'll attempt to clarify. I'm pretty knew to programming in Access and I'm trying to blend some of the automatic wizard stuff with hand coded parts
My problem is: I have a table that is linked to my postgresql database and when I finish typing a record into the table it sends it to the database as soon as I'm finished. This is good but I'd rather have it so that I can have Access not send any messages to the database until all the data in that table has been entered and not just one row of the data. I tried using the before update event but that doesn't block the SQL commands from being sent
Ideally, I'd like to get the command that Access was going to send to my database and be able to edit it and check it before it's sent and preferrably, I'd like to be able to have Access not send the message and instead send it myself
The only option I see is that I have to avoid using linked tables and instead just collect the info in my own tables and send the data myself. This would work but would probably double or triple the development time
Thanks for any help you guys can give me,