| Thread | Last Post | Replies |
|
| Complex Aggregate Expression in DataColumn | 15 Dec 2004 11:49 GMT | 1 |
Say I wanted to do an aggregate sum (using the Northwind examples in MSDN help) where relationships between 2 datatables exist, I would use: SUM(Child.Price) However, if I have a "IsDeleted" column in the child table, how would I
|
| VS.NET wizard generated SqlDataAdapter | 15 Dec 2004 10:40 GMT | 3 |
I think i am in front of a simple problem but as I am a beginner I cannot solve it. I am using a wizard generated SqlDataAdapter. It generates for me all the Sqlcommand and also a stronged typed dataset. The SqlDataAdapter is basic
|
| How to evaluate the tables relationships using ado.net/dataset | 15 Dec 2004 08:27 GMT | 3 |
I have a list of 2 tables, using asp.net/ado.net I want to find out the foreign key relationships based on the physical structure of the database. Any idea how can that be done? Thanks,
|
| Oracle returning zombie connections when connection pool empty | 15 Dec 2004 02:53 GMT | 1 |
I am attempting to connect to some Oracle 9i databases from ADO.NET. The code I am using is straightforward and taken from MSDN (partly reproduced below). I am using the DOTNET Oracle driver. The problem is that while it initially works, it does not work after the
|
| DataTable Primary Key Not Remove? | 15 Dec 2004 02:20 GMT | 1 |
What makes a PrimaryKey in a DataTable sometimes removable and other times throw an Exception when the attempt is made? Thanks.
|
| Slow ADO.NET Drivers | 15 Dec 2004 01:14 GMT | 11 |
Informix Issue: I know this is rare, but if there are any developers that develop on an Informix database using ADO.NET, I'd like to know if you are having a performance issue returning in excess of 1000 rows using the Informix .NET
|
| Accessing UDF's that return tables | 15 Dec 2004 00:35 GMT | 1 |
Can anyone give a quick example on how to store a Table returned from an SQL Server User-Defined Function into a DataReader object?
|
| How do I only bind certain columns with a DataGrid? | 14 Dec 2004 19:37 GMT | 3 |
I have the following code that binds a datatable to my datasource. Problem is, the table has about 25 columns and I only really want to see 5 of those columns. I know I can do it by changing my initial SQL query but that means if I want to use other data later on I have to make ...
|
| Which data objects to dispose | 14 Dec 2004 16:55 GMT | 3 |
We are having a memory leak issue and looking at possible causes. Do datasets and datatables need to be explicitly disposed? My understanding is that this is only required with connections and datareaders. In fact doing so on a dataset could be a problem if it is
|
| Detached datarow and datarow.table | 14 Dec 2004 16:26 GMT | 3 |
Hello, I have a simple ADO.NET question for someone who knows their stuff. This has been bugging me. Here's the basic question: What is going on behind the scenes when I create a detached datarow and then call datarow.table.add? What's being
|
| SqlDataAdapter and transaction | 14 Dec 2004 16:09 GMT | 2 |
I'm using SqlDataAdapter to insert data from one table into another with SqlCommand after I start a transaction. If I have convertion error for the insertion of the data, The transaction is no longer valid, I'ts rolled back.
|
| Permissions | 14 Dec 2004 15:23 GMT | 2 |
I have a desktop application, which I use to connect to an SQL Server database as follows : m_ConnectionString = "Data Source=ServerName; Initial Catalog=FlattedProperty;"
|
| DataTable Column values | 14 Dec 2004 15:18 GMT | 9 |
Hi everybody I have a problem I've struggeld with for some time. I have a DataTable with one column (say column 3) generated by an expression like : Col1 * Col2 and the rusult has many decimal places. The column data is of Decimal Type. Now is it possible to limit the decimal places
|
| RowChanged event WRT Related Tables in a DataSet | 14 Dec 2004 14:27 GMT | 1 |
I and using a dataset with multiple tables, all related, and I'm using browser like navigation (via the plus sign on the left side of each row in the datagrid). Each DataTable in the DataSet is 1:1 with a view in a database. The dataset is the DataSource for a DataGrid (pretty ...
|
| System.Data.OleDb Oracle Ref Cursor into Dataset | 14 Dec 2004 11:46 GMT | 2 |
Can someone please provide me with a working code sample (PL/SQL, VB.NET or C#) on how to retrieve a out ref cursor from an Oracle 8 database to an ASP.NET DataSet. Thank you in advance.
|