| Thread | Last Post | Replies |
|
| An unhandled exception of type 'System.Data.SqlClient.SqlException | 31 Mar 2004 12:30 GMT | 4 |
I get the error on the following line mvCmd.CommandText = sSql mvCmd.Connection = mvConn mvCmd.CommandType = CommandType.Text
|
| help ! what's wrong with my da.Update()? | 31 Mar 2004 11:16 GMT | 3 |
I want to transfer data from sqlserver to local access database , and i use dataset.merger() method , but i find the accessDS's datarow state keeps unchanged ! so i have to change some unimportant column's data,
|
| How to retrieve stored proc parameter info? | 31 Mar 2004 10:46 GMT | 4 |
In ADODB, the Command.Parameters.Refresh method brings back parameter information for an SQL stored procedure from the database - the Parameters collection is populated with the expected names and types etc. Is there a way to do this in ADO.NET - I haven't found it yet ?
|
| Error running Oracle SP | 31 Mar 2004 09:14 GMT | 2 |
The stored Procedure is CREATE OR REPLACE PACKAGE DEPARTMENT A TYPE CURSOR_TYPE IS REF CURSOR PROCEDURE GET_EMPS (I_DEPTNO IN NUMBER
|
| Doing Time in the "Windows Form Designer generated code" region | 31 Mar 2004 08:17 GMT | 5 |
Many seem to say not to dig around in there too much, but I'm in there alot. Tweaking the Command set, bindings stuff like that. Anyone else?
|
| TypedDatasets and Transaction | 31 Mar 2004 08:07 GMT | 1 |
I have a transaction that adds a row in two tables. To accomplish this I have created a coarse grained method, which opens a transaction and then calls two fine grained methods (each responsible for adding a row in the dataset coresponding to a table). Individual methods updates ...
|
| Inserting >8000 char Ntext Timesout | 31 Mar 2004 08:02 GMT | 5 |
Is there something special I need to do to insert large Ntext fields? Small Ntext fields insert/update/delete fine, however, larger one(8K+) time out on updates and deletes. Any suggestions would be helpful.
|
| XML From Store procedure HELP | 31 Mar 2004 07:46 GMT | 3 |
I wrote a Stored procedure that return me an xml some thing very simple (select * from XXX FOR XML AUTO) and I would like to get the XML result into some string param in VB.NET . then I would like to take this XML String and transform it with XSL and the
|
| System.Data.Common.UnsafeNativeMethods.SetErrorInfo | 31 Mar 2004 03:43 GMT | 1 |
We have a data access object that handles most our our database actions, Somethimes we get this error does anyone have a clue what could me causing this. at System.Data.Common.UnsafeNativeMethods.SetErrorInfo(Int32 dwReserved,
|
| Create view from ADO.NET in Access problem | 31 Mar 2004 03:38 GMT | 1 |
I have got the following problem: i try to create a view (query) in MS Access through ADO.NET with the oledb Jet provider, i use the following code dbCommand.CommandText = queryString dbCommand.CommandType = CommandType.Text dbCommand.ExecuteNonQuery()
|
| Help with ADO .NET and Access | 31 Mar 2004 03:30 GMT | 1 |
I was wondering if somebody can give me an advice. My problem is that I am working with an Access database, I am succesfully running a query, binding the output of the query to the data adapter to a dataset and to a table, then I add 4 new collumns
|
| DataRowView exception | 31 Mar 2004 02:11 GMT | 2 |
I can't find this documented anywhere, but it appears that you cannot set the value of a field in a DataRowView more than once without calling AcceptChanges or RejectChanges in the underlying DataTable. Can anyone confirm this? Is this documented anywhere?
|
| Help with ADO recordset | 31 Mar 2004 00:29 GMT | 1 |
Can somone please help me. I am trying to get a ADO recordset and build a dataset off of the recordset. I have tried both recordset.Open and command.execute. I have not been successful. Here is my code
|
| Command Dialect | 31 Mar 2004 00:29 GMT | 1 |
I am trying to use my own dialect with an OLEDB provider and I am able to connect and build the command object but when I run the command.execute my code fails and gives the following message. "Parameter object is improperly defined. Inconsistent or incomplete
|
| readxmlschema from .xsd with primary key | 30 Mar 2004 23:07 GMT | 1 |
I've created a .xsd file in VS.Net using the add>new item>XML Schema. I created the fields and a primary key in this schema. However, when I use the DataSet readsmlschema function I get a dataset with the proper fields, but no primary key defined.
|