Hey Guys,
It might sound silly but pls answer me...
i would like to know what exactly happens when i try to access a table from two different thread at the exact same time..?
View Complete Post
Julie Lerman shows database administrators how to limit access to databases from the Entity Framework by allowing it to work only with views and stored procedures instead of tables-without impacting application code or alienating developers.
Julie Lerman
MSDN Magazine August 2010
In this article, the author delves into some commonly used ways of writing data access code and looks at the effect they can have on performance.
Bob Beauchemin
MSDN Magazine August 2009
Hello,
I have 2 tables, master, detail. 1.master table have fields (id, username, plan)-->id is primary key (PK) 2. detail table have fields (srNo,id, worksummary, ... )--> srNo is PK.
I have created foreign key relationship from detail to .master table for "id" field.
the code is:
IList<detail> objDetail=new List<detail> (); IList<master> objMaster = new List<master> ();string[] sarray = queryFields.Split('|');// for (int i = 0; i < sarray.Length; i++){ string[] sfields = sarray[i].Split(','); if (sfields[0] != "") { objDetail.Add(new _detail { Id = count , modify = sfields[1].ToString(), verified = sfields[2], I}); } }
I have problem to add fields in "objDetail" using Add method. But I am unable to access the reference field "Id" , rest of the field of detail table can be accessed using objDetail.
How can I access the "Id" field from objDetail object to add in IList.
I want to solve this problem
Hi there,
I'm trying to link an InfoPath form to an Access database, I want to connect the InfoPath form to 3 tables in the Access database but InfoPath will only recognise parent-child relationships in a series (e.g. the "Company" table is the parent to the "Customer" table, which is again parent to the "Orders" table)
I need to have two parent tables and one child table, though (e.g. "Customer" is parent to "Orders", but "Inventory_Item" is also parent to "Orders"). Is there any way to establish this in InfoPath? I'm using Windows XP, InfoPath 2007 and Access 2007.
Cheers, Patrick
Hall of Fame Twitter Terms of Service Privacy Policy Contact Us Archives Tell A Friend