| Thread | Last Post | Replies |
|
| Rejecting dataset changes, partially | 21 Apr 2005 22:48 GMT | 2 |
Hi, I have a typed dataset wich is being edited by the user, but the changes aren't pulled into the database, until he press the Ok button. The user edits in a form where he can create records in two tables (master-detail). The problem is if the user Cancels the operation, if I ...
|
| Problem with using a column from an excel file in filling datatable | 21 Apr 2005 18:19 GMT | 2 |
I an trying to extract info from an excel file and populate datatables in a dataset. One of the columns (a modifier column) I use to filter the info obtained from the excel file contains both alpha and numeric entries. If i create my own test file with the same values and using ...
|
| Simple Questtion ADO.NET/Stored procedures | 21 Apr 2005 16:32 GMT | 4 |
How can i invoke a stored procedure using ado.net? is it simple using the sqlcommand object with the "exec" key word? please let me know. a simple example/sample code would be great Thanks
|
| Parameter count does not match Parameter Value count | 21 Apr 2005 16:31 GMT | 5 |
Can someone explain me why I'm getting the following error? The error message I got is : "Parameter count does not match Parameter Value count." Here is the Stored Procedure:
|
| Server.Mappath method | 21 Apr 2005 16:29 GMT | 2 |
I have been using the Server.Mappath method to get the physical directory name so that I can create a connection string to my database. When I include this in an ASPX file all works fine. But I wanted to remove the code from my pages in put them either in code
|
| combo-box binding trouble | 21 Apr 2005 15:20 GMT | 9 |
comboBox1.DataSource = choices; Binding MTBinding = new TypedBinding("Text", source, member); comboBox1.DataBindings.Clear(); comboBox1.DataBindings.Add(MTBinding);
|
| custom pagin in ASP.NET unsing VB.NET | 21 Apr 2005 14:08 GMT | 1 |
hello , if any one done custom paging in ASP.NET using vb.net pls tell me how can i do it . Thanks
|
| Printing reports | 21 Apr 2005 13:05 GMT | 4 |
Where i can find some tutorials/information about printing reports with c# and ado.net? thanks
|
| Fill dataset incrementally | 21 Apr 2005 09:33 GMT | 3 |
Is it possible to fill a ADO.NET dataset incrementally ? (I mean to call the DataAdapter Fill() method several times, as I did not found a Add() method) I would like to call in a background thread the Fill method several
|
| about the SqlDataAdapter's Fill() method .. | 21 Apr 2005 08:04 GMT | 1 |
SqlDataAdapter myAdapter=new SqlDataAdapter("Select * From Authors ;Select * From Publisher",myConn); DataSet data=new DataSet(); how to fill the data ?
|
| Too long Record in Insert by OleDb (Ms Access) | 21 Apr 2005 04:19 GMT | 3 |
I have problem with insert and update record by OleDb in Access. I have table test with 151 columns and I can insert or update record. I have 2 exception error 1. "Record is too long" when I try to insert
|
| Autoincrement and unique string values | 21 Apr 2005 01:07 GMT | 1 |
I have a string datacolumn which needs to have unique values. If "Value" exists it needs to become "Value1". The problem is that this is very slow when dealing with
|
| trouble reading CSV file with Jet OLEDB | 20 Apr 2005 23:08 GMT | 2 |
I am reading a CSV file using the provider "Microsoft.Jet.OLEDB.4.0;Data". my code is the same as a million and one examples I have seen: OleDbConnection conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filename +
|
| Data Access Block - Get con string from a webservice? | 20 Apr 2005 22:53 GMT | 4 |
My applications need to send a query to a WEBSERVICE to get the configuration string they need for database access. Can any one suggest how I modify the DAB to accomodate this?
|
| Generic data transfer | 20 Apr 2005 18:17 GMT | 6 |
I need to transfer data from various external sources to any database (Oracle, SQL Server) generically. The database name, field names & table names will be in a configuration file. The possible SQL statements would be Inserts, Updates and deletes.
|