| Thread | Last Post | Replies |
|
| strange concurrency problem | 10 Mar 2004 04:21 GMT | 3 |
I'm running into a strange concurrency problem: I have an outer loop of distinct invnum from table a_r; I have an inner loop of table a_r2 that is filtered on 'invnum = out loop invnum'. I calculate and then want to delete, but I have the concurrency error, which I supposed
|
| how to manually create primary key values on a dataset? | 10 Mar 2004 01:22 GMT | 1 |
I've been using the following to fetch my keyvalues at runtime. But I just changed my base query to join into a couple of new tables so it's no longer retreiving a valid key. MyDa.MissingSchemaAction = MissingSchemaAction.AddWithKey;
|
| Get Excel Worksheet name Runtime | 10 Mar 2004 01:02 GMT | 3 |
How can I get the Worsheet name in my SELECT statement using ADO.NET "SELECT * FROM [mysheet$] I do not know what mysheet$ name is Yama
|
| Rollback transaction doesnt work when DataAdapter.Update() throws exception caused by RAISEERROR in a trigger | 09 Mar 2004 21:47 GMT | 5 |
I have a trigger like this (simplified to illustrate the problem): -------- CREATE TRIGGER Test ON [dbo].[TestTable] FOR INSERT, UPDATE, DELETE
|
| How to Setup StronglyTyped dataset column with DataType System.Object?? | 09 Mar 2004 21:31 GMT | 1 |
How do you set up a create an xml schema column element and define it as either an System.Object or as a System.Type in the xml designer? I have tried anyType but it complains when previewing the dataset. Any thoughts????
|
| error message when creating a datatable | 09 Mar 2004 21:11 GMT | 2 |
Hi Folk Im trying to create a datatable but i keep encountering the following error message An unhandled exception of type 'System.Data.SqlClient.SqlException' occurred in system.data.dl Additional information: System error
|
| dataadapter | 09 Mar 2004 20:20 GMT | 1 |
It was suggested that I post this item here. Sorry about the cross post I am using a datagrid to display information from a table. I have successfully been able to select items and make the values appear in different textboxes on the form. I would like to be able to select a ...
|
| Generate Dataset does not carry over Default Values from Database | 09 Mar 2004 17:18 GMT | 1 |
I'm working with VS.NET 2003 and SQL Server 2000. After having created a sqlDataAdapter and a sqlConnection by dragging a database table from Server Explorer onto the form's design surface, I then generate a dataset from the sqlDataAdapter...you know, the
|
| Set value of field in new record | 09 Mar 2004 16:31 GMT | 2 |
I have a form that is bound to a table in my strongly-typed dataset. When I create a new record, I am using the following code: With Me.BindingContext(m_oDataSet.SecUser) .EndCurrentEdit()
|
| Help - System.Data.DataTable.InsertRow() throws ArgumentOutOfRangeException | 09 Mar 2004 16:19 GMT | 4 |
I have a C# program that works one time and fails the next on my deployment test system. It does not fail on my development system. The deployment uses the installation procedure created by Visual Studio 2003. The deployment is installing the .NET Framework ver 1.1, MSDE 2000, ...
|
| Two ComboBoxes, Relation, SelectedIndexChanged event | 09 Mar 2004 16:04 GMT | 3 |
SCENARIO -------- I have a Win forms project (C#), two comboboxes databound to two tables linked with a relation (parent child). Selecting a value from
|
| DataAdapter.Update returns 1 when the row has been deleted | 09 Mar 2004 14:59 GMT | 1 |
I am testing what happens with our updates when I delete a row after it's been cached on the client in a Datatable. I retrieve the record. It sits in a DataRow inside a DataTable on the client.
|
| DataSet.Tables[x].Rows.RemoteAt(y) | 09 Mar 2004 14:19 GMT | 3 |
This is part of the code DataTable y = new DataTable("newData"); int rowCount = destData.Tables[0].Rows.Count; for (int i = (rowCount - 1);i >=0; i--)
|
| absolute newbie question - connecting to SQL server in ADO.net | 09 Mar 2004 07:32 GMT | 6 |
I have previously worked with Access 2000 and SQL server 2000 and I am comfortable using ADO in this way. In a (probably vain) attempt to take things further I bought a copy of VB.net standard edition with an eye to writing stand-alone applications with
|
| how to update data from textboxes? | 09 Mar 2004 07:23 GMT | 6 |
i have created an sqldataadapter using a wizard and i can save it using datagrid control but don't know how to save the data from textbox. because i have a master detail form and the master form is populated w/ textboxes while the detail form is populated w/ datagrid
|