| Thread | Last Post | Replies |
|
| IDataReader Read() method question | 30 Apr 2005 15:07 GMT | 4 |
I am going to crazy and feeling myself so stupid but I don't understand such behavior. I have code: public int getNextAgentId() {
|
| Continious DataTable.Select without AcceptChanges on every table leaks memory | 30 Apr 2005 02:30 GMT | 1 |
we had very strange memory usage in our application when continiously updating a dataset. We were able to exactly localize the problem in the datatable.Select method. Each time we check the datatables for changes with Select, there is an
|
| Scrolling and retrieving rows similar like ado recordset | 30 Apr 2005 02:30 GMT | 1 |
I working on implementing a scrolling and record navigation with ADO.NET. In ado recordset having builtin caching/paging and record navigation methods. but i could find a similar conecpts in ADO.NET classes.. Am i missing something?? In dataset class i cannot set ...
|
| Needing Help | 29 Apr 2005 19:53 GMT | 1 |
i am trying to make a window application that create graphs (plot data as in excel) for a given set of points, how can i do this? thanx
|
| Transaction IsolationLevel problem | 29 Apr 2005 19:48 GMT | 4 |
I have an application, which requires several SQL activities, so I wrap them in a transaction: SqlConnection conn = new SqlConnection(connectionString); conn.Open();
|
| retrieve default values | 29 Apr 2005 18:57 GMT | 2 |
I am trying to export info about a SQL server database in vb.net. I need to retrieve the following info about the fields in the tables: names, data type, length and default values. I have used the following code to retrieve the first three properies:
|
| Comparing 2 datasets (or datatables) | 29 Apr 2005 18:42 GMT | 7 |
I want to compare two datasets (of 2 datatables). I just need to know whether the 2 datasets are same or different. I do not want to know how it differs. (I would be nice to have though).. Is there any easy way to accompilsh this. Thanks
|
| Require Help Regarding Deployment...... | 29 Apr 2005 14:46 GMT | 2 |
Hi Every Body, I build an application using vb.net. Now i m deploying on the client system. I know that the deployment automatically check the .net framework on the client system at startup.
|
| DataView.RowFilter and DateTime column | 29 Apr 2005 14:39 GMT | 4 |
I'm trying to set the RowFilter = "MyDateTimeColumn in ('2005-02-21')" but it returns 0 rows. I know the row is there. If change the RowFilter to RowFilter = "MyDateTimeColumn not in (all the other dates but 2005-02-21) it returns the rows.
|
| time keeps converting itself to date! | 29 Apr 2005 14:28 GMT | 3 |
I am accessing an Access db. I generated the adapter and ds thru the wizard. I have a datetime field in the database (simply called Time) that I am posting to from a textbox. I had to convert it to dattime format, which
|
| Table Mapping with Typed Dataset | 29 Apr 2005 14:23 GMT | 2 |
I've created a strongly typed DataSet, with a 2 related tables. a couple of the columns in the parent are computed with expressions. One of which is a Sum of a Child.column (Sum(Child.UnitCost). Eitherway, since adding these expressions, I'm getting a
|
| DataView mystery | 29 Apr 2005 09:12 GMT | 1 |
For some reasons, these lines of code sometimes differ in results: myDataView.Item(1).row("MyColumn") myDataView.Item(1)("MyColumn") Sometimes the second version throws a NullReferenceException in the
|
| Update IMAGE columns in SQL Server | 29 Apr 2005 08:59 GMT | 8 |
We need to update an image stored in a SQL server. I understand that the basic code *could* go something like: BEGIN Load the image from the file into a byte array
|
| Error - Deleted row information cannot be accessed through row | 29 Apr 2005 08:41 GMT | 3 |
I am using a dataset containing Parent/Child tables. When I attempt to delete more than a single row, I get the DeletedRowInaccessibleException error on the second row to be deleted. I cannot figure out why. I have looked at the data just before the failed call (identified by ==>). ...
|
| Finding out ADO.NET version | 29 Apr 2005 01:18 GMT | 1 |
How do i find out what version of ADO.NET is being used in my .NET application. Iam building vc++ application in visual studio.net 2003 (7.1 version) and .NET framework version 1.1. I would like use the new feature of ADO.NET 2.0
|