Tagged Questions

2
votes
1answer
272 views

DataGridView, DataTable, SqlDataAdapter and SqlCommandBuilder - disable deletes

I have a WinForm that has a DataGridView table. It is bound to a DataTable in conjunction with a SqlDataAdapter and SqlCommandBuilder. What is the best way (easy and easy to manage) of disabling …
1
vote
1answer
44 views

DataSet Takes Only One DataGridView Change When Calling DataAdapter.Update

I am using the CellEndEdit event in DataGridView to detect when a user has finished editing a cell. I want to post the results back to the database. The datagridview is bound to a DataView. I retain …
1
vote
1answer
84 views

How bad is opening and closing a SQL connection for several times? What is the exact effect?

For example, I need to fill lots of DataTables with SQLDataAdapter's Fill() method: DataAdapter1.Fill(DataTable1); DataAdapter2.Fill(DataTable2); DataAdapter3.Fill(DataTable3); …
0
votes
3answers
63 views

Using SqlDataAdapter in an ASP.NET page

I'm writing an ASP.NET 2.0 page in VS2008. In my Page_Load method I have the following: DataTable table = new DataTable(); SqlDataAdapter adapter = new SqlDataAdapter(); using (SqlConnection …
0
votes
2answers
42 views

Building SQL Query with SQL Data Adapter? Generating query off of configuration section

I'm not sure if I'm approaching this the correct way, but am very open and appreciative of any suggestions. I am building a chart off of data in a SQL database. The chart has 'Age' and 'Percentile' …
0
votes
1answer
33 views

How do I set the timeout when filling a temporary table based on a complex query?

How do I set the command timeout in the following situation? Just to clarify, I have already set the connection timeout in the Connection String, but I also need to set the command timeout because I …
0
votes
1answer
27 views

.Net DbDataAdapter has wrong primary key on filled datatable and i want to correct this

Hi all, .NET/MSSQL Server Question: I use a System.Data.SqlClient.SqlDataAdapter to connect to a database and read (.Fill) a datatable from a view in the database (select * from v_coolview). The …
0
votes
0answers
88 views

SqlDataAdapter Insert with Multiple Tables

I have a static class which loads the initial data for my c# windows forms application. The data is retrieved via 1 sqldataadapter with one query selecting from multiple sql server tables. These are …
0
votes
2answers
94 views

how to determine if zero records are return in SqlDataAdapter

i have the following code string connString = ConfigurationManager.ConnectionStrings["XXXConnectionString"].ConnectionString; SqlConnection conn = new SqlConnection(connString); …
0
votes
0answers
95 views

SqlDataAdapter and UpdateBatchSize

I am running into a problem when setting the UpdateBatchSize property to a number > 1 on my data adapter. I only get an error when I have a very specific type of DataRelationship on the table. …
0
votes
0answers
135 views

ConstraintException on insert into primary key

I had a typed dataset with three tables in master-detail relationships and got the error "Failed to enable constraints. One or more rows contain values ciolating non-null, unique or foreign-key …
0
votes
0answers
176 views

SqlCommandBuilder and SQL Server Computed Columns - Error

What is the right way to avoid errors on INSERT and UPDATES with a SqlDataAdapter/SqlCommandbuilder when the SQL Statement used to SELECT has a computed column as one of the return fields? I get the …