473,394 Members | 1,865 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Why can't I add records through my query?

Seth Schrock
2,965 Expert 2GB
This is one of the most complicated databases that I have worked with, so apologies ahead of time if I'm not real clear as I'm trying to only include the important details.

I have the following tables:
tblDevice (DeviceNumber is PK)
tblJob (JobID is PK)
tblDeviceJob

I have a many-to-many relationship between tblDevice and tblJob with tblDeviceJob being the join table. I have a form based on a query for tblJob with a subform based on a query that includes tblDeviceJob and tblDevice. This is how I want my query to look like for my subform:

Expand|Select|Wrap|Line Numbers
  1. SELECT tblDeviceJob.DeviceNumber,
  2. tblDeviceJob.JobID,
  3. tblDevice.Selection
  4. FROM tblDevice INNER JOIN tblDeviceJob ON tblDevice.DeviceNumber = tblDeviceJob.DeviceNumber;
On the subform, I'm using a combo box to pull the DeviceNumber along with the ComputerName field from tblDevice. My problem is that as soon as I make a selection, I get the following error:

The current field must match the joinkey '?' in the table that serves as the 'one' side of the one-to-many relationship. Enter a record in the 'one' side table with the desired key value, and then make the entry with the desired join key in the 'many-only' table.

Everything works fine if I remove the tblDevice.Selection field from the query, but I need that field. One thing that I noticed is that when I include the Selection field, the subform doesn't have the join field populated in the next row as it normally does. When I remove the Selection field, the join field is pre-populated waiting for a new record. What can I do to fix this?
Aug 10 '12 #1
27 5260
twinnyfo
3,653 Expert Mod 2GB
Is your combo box to pull the Device number a bound or unbound control? The query underlying the forms may not allow you to modify the recordest. Whenever you select an item, the query doesn't know what to do, since the query is joined using that field.

Are you trying to change the device number or filter by the device number?
Aug 10 '12 #2
Seth Schrock
2,965 Expert 2GB
The combo box is bound to the join table and is pulling from the device table. The query does allow me to modify the recordset somewhat. I can manually add the JobID (the second field of the PK), then leave the record, come back to that record and then make a selection from the combo box. However, I had to have left the record first.
Aug 10 '12 #3
twinnyfo
3,653 Expert Mod 2GB
after you update JobID, try AfterUpdate to be

Expand|Select|Wrap|Line Numbers
  1. Me.cboDeviceNumber.Requery
  2.  
to see if it refreshes the data under the combo box. Although I am still not sure if that is answering your original question. We'll keep tinkering...
Aug 10 '12 #4
Seth Schrock
2,965 Expert 2GB
Didn't work. The combo box is populated. For some reason though, it doesn' like having a new record being initiated by that field. I would rather take the JobID off the subform (leaving it on the query for linking purposes) so that it isn't seen by the user. I have it on right now for troubleshooting purposes.
Aug 10 '12 #5
zmbd
5,501 Expert Mod 4TB
Seth,
http://support.microsoft.com/kb/928023

The afterupdate event will not work here. The afterupdate event doesn't fire until the record is written to the table and the engine has already errored before the event fires because you have a broken composit primary key. This is why when you manually add the JobID as in #3 all is good... you've created the related record.

In the before update event...
You may be able to do something along the lines of pulling the new information to limbo and cancel the record save. Then pass that new information to a seperate sub call (the seperate call to force the change in scope from the event to the sub) to create the new record on the one-side of the join and then force a requery upon return from the sub. It will be tricky and I'm not sure that it will be able to be done in your database without actually looking at it; however, give it a try and let me know.

-z
Aug 10 '12 #6
Seth Schrock
2,965 Expert 2GB
I had actually seen that post before, but its not creating empty rows in the One side of the relationship so I'm not sure how much that post applies to me. Also, the workaround says that the problem does not occur if you project a non-complex field from the One table. I don't think that my query is complex.

I have no clue how to do what you are saying in the before update event.
Aug 10 '12 #7
zmbd
5,501 Expert Mod 4TB
I don't beleave that "complex" refers to the information in the field.
Because I'm a little slow let me try to explain myself using some tinkertoys ( :) )

Tbl1
[SimplePK] autonum PK
[field1] text(50)req-nonull-nonindex
[field2] text(50)req-nonull-nonindex

Tbl2
[Complex1PK] autonum PK(1/2)
[Complex2PK] autonum PK(2/2)
[field1] text(50)req-nonull-nonindex
[field2] text(50)req-nonull-nonindex

Tbl2 has a complex primary key; thus a "complex field" where-as Tbl1 only has the simple field for the primary key.

Until the entire primary key has been established, the record can not be saved even though there maybe a pointer to it; however, the record is "empty" so as far as Access is concerned; thus, the engine errors because there is no related record on the one-side of the 1:M relationship.

Now, I know what I'm thinking; however, I'm not sure if I was able to get that into the text... sort of like my drawings... I can see such wonderful things in my mind's eye but, unlike my Mom, trying to get that on the canvas... not so pretty.

-z
Aug 10 '12 #8
Seth Schrock
2,965 Expert 2GB
Here is the BE and FE

Basically, from the Home page, click Jobs, then Add Devices. the form that comes up is the one that I'm working with.

It is possible that I'm doing things the hard way. Basically what I'm trying to do is to create a job, add devices and tasks and have checklist for each device. To do this I setup a three-way relationship: tblDevice many-to-many with tblTask which is related to tblJob One-to-Many, which is related to tblDevice many-to-many (with the appropriate join tables). I'm creating the Job in tblJob and then adding the devices and tasks, but this requires me to run an append query to populate the join table between tblTask and tblDevice. What I'm working on now is the ability to add devices after the job has been created, which means that I have to do an append query for just the devices that I'm adding (hence why I'm using the Selection field so that I can distinguish between those already part of the job and those that I'm adding on). Hopefully that makes sense. If there is a better overall setup, please let me know. I really want my databases to be properly setup. I am totally self taught so I have no one to check my designs.
Attached Files
File Type: zip ITInventory_be.zip (126.7 KB, 104 views)
File Type: zip IT Inventory.zip (536.3 KB, 104 views)
Aug 10 '12 #9
Seth Schrock
2,965 Expert 2GB
The complexity thing does make sense. What I don't understand is that I'm getting the error before record is trying to save. The little pencil is still there and I haven't tried to leave the record, so why is it even trying to check the values? Usually, if you type something incorrectly, it tells you when you try to go to the next record.
Aug 10 '12 #10
zmbd
5,501 Expert Mod 4TB
Yes... the behavior is sometimes the most confusing...
For some reason, it is trying to update the many side of the relationship first so it goes to the one side table and can't find the related record; thus the error.

Let me take a look at your database... may take me few moments ( :) ) I warn you now... I have the three kids at home and they seem to know when I'm playing... that's when they like to bug me (yes this is my hobby... go figure, Chemist by day... Database S&M by night... and Monty Python is the funniest stuff around)

Until I get a chance to dissect your database...


PLEASE, Please, Please take the following with the greatest amount of respect - I understand that you've experience with designing databases, I offer the following by way of "review" or "refresher"...

I noted that you said that you are self taught...

I've found that having an outline of things to do helps when I design my projects... what I found though is that in my text books and other references the basic foundation is explained very badly... Then I stumbled upon some white papers and a wonderful Oracle database engineer... Trying to put together a website to bring that together for others I ran across this http://www.applecore99.com/tut/tutindex.aspp Seems that just like "Soft-scrub" someone else beat me to the punch.

SO... in a few hours.... oh.. I need to go run an errand for the Wife in a moment too... and the kid...
Sometimes, I wish I was the dog... feed me, water me, let me chase that rabbit! SQUIRRL!!!!!

-z
Aug 10 '12 #11
zmbd
5,501 Expert Mod 4TB
Seth,
I'm running into several compile errors in your code.

Are you using "option explicit" as many variables are not defined in your code.

There are muliple controls missing from the forms that are refered to in the code; however, they're not on the forms in question.

Please run the compiler on your front end and repost.

After the 15th failure to compile I just don't have the time to fix the code nor do I know which control should have what attributes etc...

-z
Aug 11 '12 #12
Seth Schrock
2,965 Expert 2GB
I thought I did. I always try to declare them even before I figured out how to have Access put the option explicit in for me. I was always forgetting to set it.

In going through it, the following didn't have it set:
frmDeviceSearch
frmHome
frmIPAddressManager
frmWarrantyReport
sfrmDeviceSearch
sfrmIPAddress
sfrmMonitor
sfrmWarrantyReport


Most of these didn't even have variables in any of the code, but I will make sure that I add that in when I get back to work. But all of the other forms did have it set. I haven't checked the reports.
Aug 11 '12 #13
NeoPa
32,556 Expert Mod 16PB
Before Posting (VBA or SQL) Code should help with some of those basics Seth. Getting Option Explicit to come up automatically is really important in a database. It's the first thing I fix when I take on any new database.
Aug 11 '12 #14
Seth Schrock
2,965 Expert 2GB
I do have Option Explicit set for the section of the database that I'm having trouble with. At least I don't have to worry about it now that I have it set to do it automatically.
Aug 11 '12 #15
zmbd
5,501 Expert Mod 4TB
Seth,

OK, I've spent the last 6 or 7 hours looking at your database... only on this issue.

This is the weirdest thing I've seen in access so far...
It has something to do with the subform itself.

So.
1) I appended the _OEM to your original subform.
2) I remade the subform... matching exactly everything you have in the subform for properties, code, etc...
3) I then opened your orginal master form
4) I then deleted the subform you had in the Master and then using the wizard added the subform I just created

I repeated step 4 again doing the entire adding of the subform to the orginal master... without the wizard.

In my remade form... I could add and edit records.
In the first go-around for Master/child... no errors
In the second go-around for Master/child... no errors.

What I did:
- For your combo boxes in the subform... open notepad... and then copy their record source SQL out to notepad Create from scratch the subform, using the saved SQL for the combo boxes.
Open the Master form and delete the current subform... then either by Wizard or by hand inset the new subform...

I've attached what I've done so far...
You'll need to relink your tables... I had this in the windows-xp allusers desktop subfolder.

-z

Once the number three, being the third number, be reached, then lobbest thou thy Holy Hand Grenade of Antioch towards thy foe, who, being naughty in my sight, shall snuff it.
Attached Files
File Type: zip Seth_InventoryDB.zip (641.9 KB, 83 views)
Aug 11 '12 #16
zmbd
5,501 Expert Mod 4TB
oh... the attached database in #16 is from the first posting thus it never did compile for me... however, I didn't write any code so I wasn't worried. The only difference is as described in #16

I really need a nap before the Wife finds me stuck to the keyboard
-z
King Arthur: Right. One... two... five.
Galahad: Three, sir.
King Arthur: Three.
Aug 11 '12 #17
Seth Schrock
2,965 Expert 2GB
Okay, I'm trying to duplicate what you did. What do you mean by "I appended the _OEM to your original subform"? I'm not familiar with OEM in this context.
Aug 13 '12 #18
zmbd
5,501 Expert Mod 4TB
sorry, it was quite late/early (depending on your point if view) in the day when I made the post...

"1) I appended the _OEM to your original subform"
I renamed your orginal form by adding "_OEM" to the name. It's just a tag I'll append to a name on something when I want to keep the orginal intact while working with a copy of the item in question and need that copy to have the original's name. It's short for "Orginal Equipment Manufacture".
-z
Aug 13 '12 #19
Seth Schrock
2,965 Expert 2GB
After seeing the _OEM on the end of the form title, I figured out what you meant.

Also, I found the one little setting that wasn't copied over when you recreated the subform: I had the checkbox, Selection, having a default value of True. Yours didn't. When I added it to yours, I got the error again. When I took it back off, it worked. So now I'm going to play with saving the record and then setting the checkbox to true in the after_update event of the DeviceNumber combobox.
Aug 13 '12 #20
Seth Schrock
2,965 Expert 2GB
I got it to work with the following in the After_Update event for DeviceNumber:

Expand|Select|Wrap|Line Numbers
  1. Option Compare Database
  2. Option Explicit
  3.  
  4. Private Sub DeviceNumber_AfterUpdate()
  5. If Me.Dirty = True Then Me.Dirty = False
  6. If Not IsNull(Me.DeviceNumber) Then
  7.     Me.Selection = True
  8. End If
  9.  
  10. End Sub
I'll use this unless you think that there is a better way. Thanks for all of your time. I don't think that I would have figured out the Default Value thing if I hadn't had your redone subform.
Aug 13 '12 #21
zmbd
5,501 Expert Mod 4TB
I have no idea why that default value would be an issue... I'd check as to where else is that field used in your table relationships... somewhere that field may be on the many-side of one of your relations between tables and the record there isn't made until the jobid is entered...

The afterupdate event is a good workaround until you figure out the field.

-z
Aug 13 '12 #22
Seth Schrock
2,965 Expert 2GB
By "that field", do you mean Selection or DeviceNumber? Selection has no relationships (I'm not even sure if a yes/no field can be used to create a relationship) and DeviceNumber is what relates tblDevice to tblDeviceJob with tblDeviceJob being the Many side (which is what the main form is based on).

The only thing that I can think of is that the default value is getting posted before the JobID is added, even though it looks like it is done at the same time. If this is the case, I don't know of any way to change the order other than with the after_update event to set the Selection value to True.
Aug 13 '12 #23
zmbd
5,501 Expert Mod 4TB
Try this...
Set the database to open in multiple panes instead of tabs.
Open "tblDeviceJob"
Open "tblDevice"
Open "qryDecviceSelection_AddingDevice"
Arrange all of these so that you can see the last few records in each of the tables.
For the following... pay attention to "tblDevice"
Now... in "qryDeviceSelection_AddingDevice"
New record
Notice that the checkbox is currently null
Select the checkbox and move to new record...
Did you notice what happened in "tblDevice" ?
Make a note of the last [DeviceNumber]
repeat...

Still in "qryDeviceSelection_AddingDevice" add a random job... say 3... the last device number 480 populates the field... you can change it... and the check box will change state to match the state as shown in tblDevice...

When we change the checkbox in the form to have no value as the default we're matching what happens in the query itself when you start a new record... but for some reason... in the form... when the control is set to a value when it starts a new record... instead of inserting new record in tblDevice as the query did... it's forcing the error.

Still looking into that; however, it may be a bug...

-z
Aug 13 '12 #24
Seth Schrock
2,965 Expert 2GB
Well, I'm not sure if this makes sense or not, but this is what I noticed. In tblDevice, DeviceNumber is an autonumber that is only up to 417. However, when I put in the JobID 3 in qryDeviceSelection_AddingDevice, the number that pops into the DeviceNumber is 434, for which I have no record in tblDevice. This would explain the error message of having not being able to add a value to the Many table without there being that record in the One table. My question is why is it putting 434 into that field? I think that if we can solve that, we have solved the problem. Could it be that it is adding records to tblDevice (like it was talking about in that article you shared with me), but not showing those records?
Aug 14 '12 #25
zmbd
5,501 Expert Mod 4TB
I D/L a fresh copy of the BE from your post as I'd been playing with your DB.

Indeed the last value in [tbldevice]![devicenumber]= 417

Now I... I did the same thing as I posted earlier (#24)
The record added to tbldevice had [DeviceNumber]=432

I think if you D/L from your post into a clean test folder... relink D/L FE to D/L BE and do as I have done we'll be in sync there...

Why is "qryDeviceSelection_AddingDevice" allowing inconsistent updates to the tables by creating records on the one-side of the relationship?!

I checked the query properties (open in design mode, open property sheet, click in an empty area in the table design) and it clearly shows that the "recordset type" is Dynaset not "Dynaset (Inconsistent)" Thus, I would expect the referential integrety to be maintained at the query level...

Basically we should be seeing the same error with the query that we're seeing in the form! Instead... the query is inserting a new record into "tbldevice"

-z
Aug 14 '12 #26
Seth Schrock
2,965 Expert 2GB
I can't figure anything out. Admittedly, I'm way over my head at this point. I think that I just keep using my work-around. Thanks for all your help.
Aug 15 '12 #27
zmbd
5,501 Expert Mod 4TB
Seth,
As I'm at a loss as to why the query is allowing inconsistent updates and the form is enforcing them when the chkbx.ctl is set to true, I've asked for another pair of eyes to look over what we've done to see if we've missed something or I've mis-understood something (more likely :) )
-z
Aug 15 '12 #28

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: news-server.tampabay.rr.com | last post by:
Hi, Below is a stock script I found which controls a framed environment. My problem is that if a URL has a query string attached, that string does not pass through. Can someone please let me...
2
by: Jason | last post by:
I have a table of 650,000 records associated to contracts. Some of the contracts have multiple records but each contract only has one Active Record (there might be several inactive records). ...
4
by: redryderridesagain | last post by:
My macro is writing to a table(T) and reading a query (Q) based on that table (VBA/Visual Basic 6.3). I cannot write T and read Q in the same execution of the macro, however, if I skip the writing...
9
by: Mike Bridge | last post by:
I am using MS Access 2003, and I typed in a query in SQL view which was working fine. Now when I open it, it gives me the error "Join expression not supported". Apparently, Access "fixed" it for...
4
by: alltechsolutions.net | last post by:
Been at this for two days now... I have a customer database with various fields, two of which are: ContactID (an autonumber field) & ReferralID (long Integer) When a customer refers someone...
0
by: Paul M | last post by:
Hi I'm using c# for a web site app. In dataset I created tabledata adapter, but I need specific sql terms like PLAN for index. How can I deactivate query parsing when is generating select sql? ...
11
by: cgrider | last post by:
I have a query that checks for duplicate records on 2 fields. the issue I am having is that the data unfortunately is case sensitive. So M != m but the query is case insensitive. Is there a way to...
0
by: sara | last post by:
Hi - I posted this earlier and didn't get any response. Hopefully someone can help?? I have a table keeping track of employees' jobs in a location. So, Store #1 Manager #353, AsstMgr #556...
20
by: raddrummer | last post by:
Hi there, I'm woking on a function that takes the input from a form (including Payroll Contact), uses it as a query parameter, runs the query, and then emaills out a custom .xls file using the...
1
by: yfangl09 | last post by:
I have one query with a list of people and required courses they have to take and another with the same people and courses they have already taken. How do I generate a query with required courses...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.