| Thread | Last Post | Replies |
|
| SqlConnection and Transaction | 20 Dec 2004 15:21 GMT | 2 |
I'm using SqlConnection to insert data from one table into another using SqlCommand after I start a transaction. If I have convertion error for the insertion of the data, The transaction is no longer valid.
|
| Best practices using data adapter? | 20 Dec 2004 15:15 GMT | 1 |
Hi! Are there any best practices using OleDbDataAdapter and strongly typed data sets? I always end up having too many (I think) adapters and data sets, even for a small application with just a few tables. In my most recent project I use 7 tables in the database and I think I have
|
| Insert using oleDbAdapter | 20 Dec 2004 15:02 GMT | 4 |
Hello, I'm trying to implement a very easy asp.net page to insert some data in a database. I'm doing it using as less code as posible so I used as much data controls as possible. Here is the page schema: 3 Textfields
|
| reading/writing blobs | 19 Dec 2004 23:27 GMT | 1 |
have a VB6 pgm, which used the following to read/write a blob of doubles Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (ByVal pDest As Long, ByVal pSrc As Long, ByVal Length As Long) CopyMemory pDest:=VarPtr(mRolloutQty(StartingMonthOffset)),
|
| Boolean vs. Byte data types | 19 Dec 2004 20:19 GMT | 6 |
I have 4 columns in a sql database which contain the value 0 or 1. From a speed/storage standpoint, does it make any difference whether I treat these columns as bit or tinyint. Don't both take a byte for storage and transmittal.
|
| Stored procedure doesn't return dataset unless recompiled | 19 Dec 2004 20:13 GMT | 1 |
I have a web app that calls a SP. Twice in the last month the app has locked up. The first time we ran a SQL Trace which showed that the SP had "completed". But no dataset was returned and ultimately the app "timed out" by
|
| Filtering the Detail Datagrid in a Master Detail Relationship | 19 Dec 2004 20:00 GMT | 1 |
Can anyone give an example of how to filter the detail datagrid that is databound in a master detail relationship. I need to display only a subset of the detail records. Thanks
|
| targetSchema gets reset | 19 Dec 2004 16:07 GMT | 4 |
Following MS' recommendation, I have changed the targetNamespace of my dataset in its .XSD file in a project I am (still) developing from the default http://www.tempuri.org to something of mine, i.e. changed the line: <xs:schema id="DataSetIC"
|
| DataView.Rowfilter not working | 19 Dec 2004 06:13 GMT | 3 |
I have a problem with the RowFilter property, which I have explained below. I create a typed dataset from a Sql view. Using a data adapter I fill the table in the dataset. However when I try to apply a filter to the table in the dataset, the filter is ignored, here is the code I use ...
|
| Collection Read Only ERROR, help | 19 Dec 2004 03:59 GMT | 1 |
Hi, I am using ADO code and I got a collection read only error. I have setted the LockType to Optimistic and CursorType to Dynamic, but it still have the same error, anyone have any ideas? I am appreciate for your help.
|
| Why is CLR Startup Slow? | 18 Dec 2004 21:20 GMT | 2 |
I'm trying to add some ADO.NET code to a program developed with VC++ 6.0. When I add a small C++ routine in a file compiled with /CLR my startup time goes from 2 seconds to 20 seconds every time a try to run the program. (not just first time).
|
| getting message over system tray | 18 Dec 2004 20:56 GMT | 1 |
I Had a problem in developing a application for getting a message over or above system tray . When we first logon into the MSN messenger , The messenger will shows message above the system tray. for example " there are
|
| convert datatable to xml in aspx | 18 Dec 2004 15:19 GMT | 4 |
I'm having trouble converting a datatable into xml, with resonse.write to aspx. I'm basically converting vb code that saved a recordset into a stream into c#, but the format is wrong. I've tried using streams, datadoc, xmlreader, etc with no success. I need to convert it directly
|
| System.InvalidOperationException: Connection must be valid and open. | 18 Dec 2004 03:56 GMT | 1 |
I am using this function tu execute updates to a MySql database from a sql string, but I am getting a System.InvalidOperationException: Connection must be valid and open. Database queries work fine, but I cant update the source. Am I missing
|
| Calling Oracle Stored Functions from vb.net | 17 Dec 2004 19:00 GMT | 2 |
I am trying to call a stored function of Oracle Package from VB.net. The function takes a string and returns boolean. How should I call it from vb.net ? I tried 3 different ways but get error:
|