473,651 Members | 2,835 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help filling dataset with one to many realtionship. HELP PLEASE REALLY URGENT!

Hi!

I have a query that INNER JOIN's three other tables. All the relation are 1
to 1, except for one, where an Item can have more than one price. I have
this query that work fine in MSDE Query Analyzer, but when I fill a dataset
with it, I get an error. (I attached a screenshot of it)
visual basic
code:------------------------------------------------------------------------------
SELECT tbl_items.latin _name, tbl_family.fami ly_fr, tbl_family.fami ly_en,
tbl_price.forma t_fr, tbl_price.forma t_en, tbl_price.price ,
tbl_price.profi t_margin, tbl_items.commo n_name_fr,
tbl_items.commo n_name_en, tbl_guarantee.g uarantee_fr,
tbl_guarantee.g uarantee_en, tbl_family.id_f amily,
tbl_guarantee.i d_guarantee, tbl_items.id_it em FROM tbl_items INNER JOIN
tbl_family ON tbl_family.id_f amily = tbl_items.id_fa mily INNER JOIN
tbl_guarantee ON tbl_items.id_gu arantee = tbl_guarantee.i d_guarantee
INNER JOIN tbl_price ON tbl_items.id_it em = tbl_price.id_it em WHERE
(tbl_items.hard _good = 0)
------------------------------------------------------------------------------
Nov 21 '05 #1
5 1723
1) You didn't attach anything. But that's actually good, as many people
don't open attachments that come with newsgroup postings for security
reasons. You should tell us what the text of the message is instead.
2) With questions like this, you always need to post relevant snippets of
code.

"Jean Christophe Avard" <NO***@M.BITC H> wrote in message
news:Oy******** ******@TK2MSFTN GP12.phx.gbl...
Hi!

I have a query that INNER JOIN's three other tables. All the relation are
1 to 1, except for one, where an Item can have more than one price. I have
this query that work fine in MSDE Query Analyzer, but when I fill a
dataset with it, I get an error. (I attached a screenshot of it)
visual basic
code:------------------------------------------------------------------------------
SELECT tbl_items.latin _name, tbl_family.fami ly_fr, tbl_family.fami ly_en,
tbl_price.forma t_fr, tbl_price.forma t_en, tbl_price.price ,
tbl_price.profi t_margin, tbl_items.commo n_name_fr,
tbl_items.commo n_name_en, tbl_guarantee.g uarantee_fr,
tbl_guarantee.g uarantee_en, tbl_family.id_f amily,
tbl_guarantee.i d_guarantee, tbl_items.id_it em FROM tbl_items INNER JOIN
tbl_family ON tbl_family.id_f amily = tbl_items.id_fa mily INNER JOIN
tbl_guarantee ON tbl_items.id_gu arantee = tbl_guarantee.i d_guarantee
INNER JOIN tbl_price ON tbl_items.id_it em = tbl_price.id_it em WHERE
(tbl_items.hard _good = 0)
------------------------------------------------------------------------------

Nov 21 '05 #2
ERROR MESSAGE== "Failed to enable constraints. One or more rows contain
values violating non-null, unique or foreign key constraints."
code:------------------------------------------------------------------------------
SELECT tbl_items.latin _name, tbl_family.fami ly_fr, tbl_family.fami ly_en,
tbl_price.forma t_fr, tbl_price.forma t_en, tbl_price.price ,
tbl_price.profi t_margin, tbl_items.commo n_name_fr,
tbl_items.commo n_name_en, tbl_guarantee.g uarantee_fr,
tbl_guarantee.g uarantee_en, tbl_family.id_f amily,
tbl_guarantee.i d_guarantee, tbl_items.id_it em FROM tbl_items INNER JOIN
tbl_family ON tbl_family.id_f amily = tbl_items.id_fa mily INNER JOIN
tbl_guarantee ON tbl_items.id_gu arantee = tbl_guarantee.i d_guarantee
INNER JOIN tbl_price ON tbl_items.id_it em = tbl_price.id_it em WHERE
(tbl_items.hard _good = 0)
------------------------------------------------------------------------------
the dataadapter is not generated at runtime. I have a sqldataadapter,
sqlconnection and dataset on my form, please, anyone help really
appreciated!!!!
Try

SqlDataAdapter1 .Fill(DataSet11 ) <<<<<<<<ERROR ERROR ERROR
HERE!!!!!!!!!!! !!!!!!!!!

rptPlant.SetPar ameterValue("la ng", preferenceSetti ngLanguage)

rptPlant.SetPar ameterValue("Co mpany", preferenceCompa nyName)

rptPlant.SetPar ameterValue("ad dress", preferenceAddre ssBillingStreet )

rptPlant.SetDat aSource(DataSet 11)
Catch ex As Exception

MessageBox.Show (ex.Message)

Finally

list.reportList .ReportSource = rptPlant

list.Show()

list.MdiParent = Me

End Try

"Marina" <so*****@nospam .com> wrote in message
news:Og******** ******@TK2MSFTN GP12.phx.gbl...
1) You didn't attach anything. But that's actually good, as many people
don't open attachments that come with newsgroup postings for security
reasons. You should tell us what the text of the message is instead.
2) With questions like this, you always need to post relevant snippets of
code.

"Jean Christophe Avard" <NO***@M.BITC H> wrote in message
news:Oy******** ******@TK2MSFTN GP12.phx.gbl...
Hi!

I have a query that INNER JOIN's three other tables. All the relation are
1 to 1, except for one, where an Item can have more than one price. I
have
this query that work fine in MSDE Query Analyzer, but when I fill a
dataset with it, I get an error. (I attached a screenshot of it)
visual basic
code:------------------------------------------------------------------------------
SELECT tbl_items.latin _name, tbl_family.fami ly_fr, tbl_family.fami ly_en,
tbl_price.forma t_fr, tbl_price.forma t_en, tbl_price.price ,
tbl_price.profi t_margin, tbl_items.commo n_name_fr,
tbl_items.commo n_name_en, tbl_guarantee.g uarantee_fr,
tbl_guarantee.g uarantee_en, tbl_family.id_f amily,
tbl_guarantee.i d_guarantee, tbl_items.id_it em FROM tbl_items INNER JOIN
tbl_family ON tbl_family.id_f amily = tbl_items.id_fa mily INNER JOIN
tbl_guarantee ON tbl_items.id_gu arantee = tbl_guarantee.i d_guarantee
INNER JOIN tbl_price ON tbl_items.id_it em = tbl_price.id_it em WHERE
(tbl_items.hard _good = 0)
------------------------------------------------------------------------------




Nov 21 '05 #3
The data adapter is being generated at run time. Using the wizard just means
it generates the code for you - but it's the same code you could write as
well.

Since there is a bunch of generated code that we are not seeing, it's hard
to say. Odds are, this query is picking up a detail table row, that does not
have a master record in your dataset.

My advice would be to not use the wizard, and write all the data retrieval
code yourself. Then you are in a position where you know exactly what is
going on, exactly what code is running, etc.

"Jean Christophe Avard" <NO***@M.BITC H> wrote in message
news:uM******** *****@tk2msftng p13.phx.gbl...
ERROR MESSAGE== "Failed to enable constraints. One or more rows contain
values violating non-null, unique or foreign key constraints."
code:------------------------------------------------------------------------------
SELECT tbl_items.latin _name, tbl_family.fami ly_fr, tbl_family.fami ly_en,
tbl_price.forma t_fr, tbl_price.forma t_en, tbl_price.price ,
tbl_price.profi t_margin, tbl_items.commo n_name_fr,
tbl_items.commo n_name_en, tbl_guarantee.g uarantee_fr,
tbl_guarantee.g uarantee_en, tbl_family.id_f amily,
tbl_guarantee.i d_guarantee, tbl_items.id_it em FROM tbl_items INNER JOIN
tbl_family ON tbl_family.id_f amily = tbl_items.id_fa mily INNER JOIN
tbl_guarantee ON tbl_items.id_gu arantee = tbl_guarantee.i d_guarantee
INNER JOIN tbl_price ON tbl_items.id_it em = tbl_price.id_it em WHERE
(tbl_items.hard _good = 0)
------------------------------------------------------------------------------
the dataadapter is not generated at runtime. I have a sqldataadapter,
sqlconnection and dataset on my form, please, anyone help really
appreciated!!!!
Try

SqlDataAdapter1 .Fill(DataSet11 ) <<<<<<<<ERROR ERROR ERROR
HERE!!!!!!!!!!! !!!!!!!!!

rptPlant.SetPar ameterValue("la ng", preferenceSetti ngLanguage)

rptPlant.SetPar ameterValue("Co mpany", preferenceCompa nyName)

rptPlant.SetPar ameterValue("ad dress", preferenceAddre ssBillingStreet )

rptPlant.SetDat aSource(DataSet 11)
Catch ex As Exception

MessageBox.Show (ex.Message)

Finally

list.reportList .ReportSource = rptPlant

list.Show()

list.MdiParent = Me

End Try

"Marina" <so*****@nospam .com> wrote in message
news:Og******** ******@TK2MSFTN GP12.phx.gbl...
1) You didn't attach anything. But that's actually good, as many people
don't open attachments that come with newsgroup postings for security
reasons. You should tell us what the text of the message is instead.
2) With questions like this, you always need to post relevant snippets of
code.

"Jean Christophe Avard" <NO***@M.BITC H> wrote in message
news:Oy******** ******@TK2MSFTN GP12.phx.gbl...
Hi!

I have a query that INNER JOIN's three other tables. All the relation
are
1 to 1, except for one, where an Item can have more than one price. I
have
this query that work fine in MSDE Query Analyzer, but when I fill a
dataset with it, I get an error. (I attached a screenshot of it)
visual basic
code:------------------------------------------------------------------------------
SELECT tbl_items.latin _name, tbl_family.fami ly_fr, tbl_family.fami ly_en,
tbl_price.forma t_fr, tbl_price.forma t_en, tbl_price.price ,
tbl_price.profi t_margin, tbl_items.commo n_name_fr,
tbl_items.commo n_name_en, tbl_guarantee.g uarantee_fr,
tbl_guarantee.g uarantee_en, tbl_family.id_f amily,
tbl_guarantee.i d_guarantee, tbl_items.id_it em FROM tbl_items INNER JOIN
tbl_family ON tbl_family.id_f amily = tbl_items.id_fa mily INNER JOIN
tbl_guarantee ON tbl_items.id_gu arantee = tbl_guarantee.i d_guarantee
INNER JOIN tbl_price ON tbl_items.id_it em = tbl_price.id_it em WHERE
(tbl_items.hard _good = 0)
------------------------------------------------------------------------------



Nov 21 '05 #4
but if I right it myself, can I bind the dataset to a Crystal report
after????????

"Marina" <so*****@nospam .com> wrote in message
news:e8******** ******@TK2MSFTN GP11.phx.gbl...
The data adapter is being generated at run time. Using the wizard just
means it generates the code for you - but it's the same code you could
write as well.

Since there is a bunch of generated code that we are not seeing, it's hard
to say. Odds are, this query is picking up a detail table row, that does
not have a master record in your dataset.

My advice would be to not use the wizard, and write all the data retrieval
code yourself. Then you are in a position where you know exactly what is
going on, exactly what code is running, etc.

"Jean Christophe Avard" <NO***@M.BITC H> wrote in message
news:uM******** *****@tk2msftng p13.phx.gbl...
ERROR MESSAGE== "Failed to enable constraints. One or more rows contain
values violating non-null, unique or foreign key constraints."
code:------------------------------------------------------------------------------
SELECT tbl_items.latin _name, tbl_family.fami ly_fr, tbl_family.fami ly_en,
tbl_price.forma t_fr, tbl_price.forma t_en, tbl_price.price ,
tbl_price.profi t_margin, tbl_items.commo n_name_fr,
tbl_items.commo n_name_en, tbl_guarantee.g uarantee_fr,
tbl_guarantee.g uarantee_en, tbl_family.id_f amily,
tbl_guarantee.i d_guarantee, tbl_items.id_it em FROM tbl_items INNER JOIN
tbl_family ON tbl_family.id_f amily = tbl_items.id_fa mily INNER JOIN
tbl_guarantee ON tbl_items.id_gu arantee = tbl_guarantee.i d_guarantee
INNER JOIN tbl_price ON tbl_items.id_it em = tbl_price.id_it em WHERE
(tbl_items.hard _good = 0)
------------------------------------------------------------------------------
the dataadapter is not generated at runtime. I have a sqldataadapter,
sqlconnection and dataset on my form, please, anyone help really
appreciated!!!!
Try

SqlDataAdapter1 .Fill(DataSet11 ) <<<<<<<<ERROR ERROR ERROR
HERE!!!!!!!!!!! !!!!!!!!!

rptPlant.SetPar ameterValue("la ng", preferenceSetti ngLanguage)

rptPlant.SetPar ameterValue("Co mpany", preferenceCompa nyName)

rptPlant.SetPar ameterValue("ad dress", preferenceAddre ssBillingStreet )

rptPlant.SetDat aSource(DataSet 11)
Catch ex As Exception

MessageBox.Show (ex.Message)

Finally

list.reportList .ReportSource = rptPlant

list.Show()

list.MdiParent = Me

End Try

"Marina" <so*****@nospam .com> wrote in message
news:Og******** ******@TK2MSFTN GP12.phx.gbl...
1) You didn't attach anything. But that's actually good, as many people
don't open attachments that come with newsgroup postings for security
reasons. You should tell us what the text of the message is instead.
2) With questions like this, you always need to post relevant snippets
of
code.

"Jean Christophe Avard" <NO***@M.BITC H> wrote in message
news:Oy******** ******@TK2MSFTN GP12.phx.gbl...
Hi!

I have a query that INNER JOIN's three other tables. All the relation
are
1 to 1, except for one, where an Item can have more than one price. I
have
this query that work fine in MSDE Query Analyzer, but when I fill a
dataset with it, I get an error. (I attached a screenshot of it)
visual basic
code:------------------------------------------------------------------------------
SELECT tbl_items.latin _name, tbl_family.fami ly_fr,
tbl_family.fami ly_en,
tbl_price.forma t_fr, tbl_price.forma t_en, tbl_price.price ,
tbl_price.profi t_margin, tbl_items.commo n_name_fr,
tbl_items.commo n_name_en, tbl_guarantee.g uarantee_fr,
tbl_guarantee.g uarantee_en, tbl_family.id_f amily,
tbl_guarantee.i d_guarantee, tbl_items.id_it em FROM tbl_items INNER JOIN
tbl_family ON tbl_family.id_f amily = tbl_items.id_fa mily INNER JOIN
tbl_guarantee ON tbl_items.id_gu arantee = tbl_guarantee.i d_guarantee
INNER JOIN tbl_price ON tbl_items.id_it em = tbl_price.id_it em WHERE
(tbl_items.hard _good = 0)
------------------------------------------------------------------------------



Nov 21 '05 #5
Set Property - Enforce Contraints = false on your dataset
Ken

Nov 21 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
1755
by: Graham Pengelly | last post by:
Hi I'll try to spell out my problem as succinctly as possible... My database has a User table, an Organisation table, a Department table and a JobType table (amongst others) The Organisation table has a one to many relationship with the other three. The User table contains foreign keys to the Department and JobType tables (and the Organisation table).
3
3380
by: Tee | last post by:
Hi, I need some help about filling dataset, I am not sure how to describe it, so I give the example here. da = new OleDbDataAdapter("SELECT * FROM Path WHERE PathID=1", cnn); da.Fill(DataSet, "Path");
8
1652
by: Sandy | last post by:
I have two tables, tblPost - (Cols PostID, TopicID, UserID, Question, PostMsg and PostDT) and tblTopic - (Cols TopicID, Topic). I am trying to get tblPost.Question and tblPost.PostDT into DataGrid1 when the DropDownList1 (which consists of Topic) is clicked. I have the following code: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load If Not IsPostBack Then
1
1440
by: Matt | last post by:
Here is my problem. I am trying to get a combo box working that lists all the models of servers that we have. This combo box is just one of many text boxes that I have on my form. I am running a "find" that searches through my database to find the queried server. When it finds it, it lists the information. I want the model number of the server to be displayed in the combo box, and when I click the down arrow on it, I want all of the other server...
2
1380
by: trialproduct2004 | last post by:
Hi all i am having two application which are using database connectivity. In both the application i am filling one large table of database into dataset. When i run first application it will fill table into dataset and display me proper count of rows.
3
2086
by: ricolee99 | last post by:
Hi everyone, I have a problem that i have been trying to solve for awhile. I'm given a code where the purpose is to create a general dataset mapper. Given any dataset, i have a class, "Mapper.cs" that's supposed to map objects from any type of dataset to any type of object. Inside Mapper.cs, there's a method, object Map(Type typeOfObjectToMap, DataSet theDataSet)
2
2107
by: clickon | last post by:
DataSet relationships seem to be focussed on one to many type realtionships. I have got a one to one realtionship in a DataSet between two tables. I can't do a join between the two tables in the database because the tables come from different databases (although held on the same server). However what i want is a single set of data that combines the fields like you get with an SQL join. Is there a straight forward way of doing this that i...
0
5557
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted ******************************************************** For this teeny job, please refer to: http://feeds.reddit.com/feed/8fu/?o=25
2
3407
by: Ryan | last post by:
Hi all, I'm loading a datagridview from an Excel file using a dataadapter.fill() method. A few questions: 1) Is there any way to control the column datatypes? The columns are defined by the .fill method based on the excel file, and the data is read in during the .file method, so everything happens with this one command. If I try to define a column.datatype before calling .fill I get an error because the column doesn't exist yet, if I...
0
8357
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8803
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8700
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8465
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8581
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6158
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5612
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4144
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4285
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.