| Thread | Last Post | Replies |
|
| How does ADO.NET pooling works ? | 27 Oct 2004 02:48 GMT | 2 |
I need to develop a pooling system for web services. It should share a memory where live my poolable objects. How does ADO.NET pooling works ? Where does it share the pool ?
|
| Update rows in datatable | 27 Oct 2004 02:48 GMT | 2 |
Is it possible to perform some type of update on the databtable contained in my dataset without iterating through each row individually? Some type of sql type update would be great. I am using it as a temporary store to iterate through some records and
|
| Date/Time in Access | 27 Oct 2004 02:12 GMT | 8 |
I'm having trouble storing the value of Now in an Access table. I'm using VB.NET 2002. I need to store a time value, but no matter what I do I end up getting just a date value in Access. I'm doing something like this: Dim NewRow as DataRow = MyTable.NewRow
|
| Updating Parent and Child at same time | 26 Oct 2004 18:53 GMT | 3 |
I have a quick question. Let's say you have the following situation. You have a parent table and a child table. If I wanted to update both parent and child at the same time. What would be the best way to do this. The reason why I am asking. Doing
|
| Send updates and deletions to sql all at once? | 26 Oct 2004 18:42 GMT | 3 |
I have a datagrid bound to a dataset using .SetDataBinding Once the info is loaded into the table and the user has edited it (be that adding new rows, deleting or modifying rows) I then need to write them back to sql2000. Two questions: Since the datagrid is bound to the dataset, ...
|
| Stored Procedures not showing displaying in Server Explorer | 26 Oct 2004 17:16 GMT | 2 |
I have created Stored procedures in Access and not all are displaying in Server Explorer. What is strange is that some appear but not. Did a refresh but still did not work. Checked the procedure in Access and all OK.
|
| How get Identity of newly added record without using Stored Procedure? | 26 Oct 2004 17:06 GMT | 2 |
I am using ADO.NET to insert a record into an ACCESS database. How do I get the Identity of the newly added record without using a stored proc? Thanks!
|
| Problem with DataReader | 26 Oct 2004 16:48 GMT | 4 |
I have a data class which returns a datareader. (Using an Access db.) I am using this method to fill a dropdownlist. The problem is that after I've ran it one time I get this error: Could not use ''; file already in use.
|
| Compareinfo & ADO.Net | 26 Oct 2004 16:41 GMT | 1 |
We are currently building an international application. We want to be able to search, sort in datatables without managing case and accents. I know that you can provide a locale to a datatable. But I don't know where I can provide the accent incensitive setting to ADO.NET?
|
| .Net Framework 1.1 SP1 BUG w/ ImportRow | 26 Oct 2004 16:36 GMT | 1 |
Just so others are aware, there is a confirmed bug in SP1. ImportRow causes a NullReferenceException. I am told by MS that it effects other new row methods as well. Others have called in also, but no one appears to have made a public
|
| Help with timeout | 26 Oct 2004 16:01 GMT | 1 |
When I call one of my sp from my asp.net app I get the foll error Server Error in '/center' Application -------------------------------------------------------------------------------- Timeout expired. The timeout period elapsed prior to completion of the
|
| DataGrid boundcolumn problem | 26 Oct 2004 15:59 GMT | 6 |
I want to use a datagrid with my display, but I don't want to use 1 row per record. What I have is a record with up to 6 values - (answer1,answer2,answer3,answer4,answer5,answer6). I want to display them
|
| DataTable.Add(row) and fired events | 26 Oct 2004 14:21 GMT | 1 |
I have a situation where a method listens to the RowChanged event for a datatable. The problem I having is this.. The RowChanged event handler calls another method, passing in the e.Row["ID_VALUE"] of the row that fired the event.
|
| UploadFile on ASP.NET | 26 Oct 2004 08:22 GMT | 2 |
I have problem with uploading files from local PC into server in ASP.NET My code: Dim myWebClient As New WebClient myWebClient.UploadFile(ServerPathAndFileName, "POST", LocalPathAndFileName)
|
| Store HashTable in a database | 26 Oct 2004 07:44 GMT | 1 |
Is it possible to store objects like HashTables in a database? How do I do this? The method I was thinking of is: 1. Serialize the HashTable.
|