Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
all groups > dotnet ado.net > august 2003 > threads for friday august 22

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

create runtime(on fly )
Posted by kapil edynamic at 8/22/2003 11:40:21 PM
Hi all can any body tell how to create runtime(on fly ) database in asp.net thanks in advance. kapil ...more >>


Is MSDE free for SDK users?
Posted by Ben at 8/22/2003 10:19:41 PM
Thanks, Ben...more >>

OleDbDataReader record count
Posted by John at 8/22/2003 8:08:54 PM
Hi How can i get the record count for the OleDbDataReader (or the associated oledbcommand)? Thanks Regards ...more >>

Access reports
Posted by Dmitri Demyanik at 8/22/2003 5:38:45 PM
I would like to to retrieve the information about reports from Access database using C# (particularly - SQL query). Can some one give me needed steps? Is it possible to do this without using the automation? Thanks in advance, Dmitri Demyanik AITOC, Inc - ecommerce solution provider and web...more >>

Is there a "duwamish" for .NET Winforms showing best practices for use of the BindingManager with bound controls?
Posted by Timo at 8/22/2003 3:52:28 PM
Thanks to David Sceppa for answer to my earlier question. I'd like to know if there's a real-world WinForms application (like "duwamish") showing best practices with BindingManager and bound controls. I'd like to compare what I have against an "expert" approach to see where mine is lacking...more >>

ANN: Generic ADO.NET 2.0 source code released on SourceForge
Posted by Michael Lang at 8/22/2003 3:15:37 PM
The new release of Generic ADO.NET is ready (2.0). You can find this project on sourceForge at: http://sourceforge.net/projects/genadonet/ This version has gone as far as creating a new data provider with the prefix "Gen". It contains classes "GenConnection", "GenDataAdapter" and so forth as...more >>

Getting schema information of SQL Server
Posted by KishorK at 8/22/2003 2:28:33 PM
OleDbConnection class has GetOleDbSchemaTable method which gives schema information of database. There is no such method (GetSqlDbSchemaTable) for SqlConnection class. How shall one go for getting schema information for SqlServer database? (basically I want schema information of each field...more >>

sql.client Insert newbie question
Posted by David NO[at]SPAM usa-soft.com at 8/22/2003 1:04:40 PM
I've managed to work with disonnected sets enough to retrieve and navigate datasets. But, How you use use the command builder to dynamically insert, update and delete rows? I'd like to use getinsertcommand, getupdatecommand, getdeletecommand methods, but I can't figure out how to call a method t...more >>



Getchanges will not work with tabpages
Posted by Tupolev at 8/22/2003 12:31:26 PM
Hi, I have a strang problem with a form that have 5 tabpages and on each page there is a datagrid. The problem: I can't get the getchanges work (although on other forms it works fine) ! It seems that when I change from tabpage, the datagrid does an accepthanges so there are no visible change...more >>

Add Autonumber field
Posted by Roger at 8/22/2003 12:24:13 PM
I am trying to programatically add a table to an existing Access database. I can create the table exactly as I need to except for one problem. One of the fields in the new table has to be an autonumber and I cannot seem to do this. The usual create table command would be something like: ...more >>

SqlDataAdapter and DataSet
Posted by Alex at 8/22/2003 12:19:06 PM
When you call Fill method passing a DataSet object and table name, is that table name associated with the SQL Server table name or just the moniker that will be attached to the generated table inside thee DataSet's TableCollection? What if you call Fill() without passing a table name, does SqlDa...more >>

Calendar Control + MSAccess
Posted by T at 8/22/2003 12:18:34 PM
Hi, I'm using the Calendar Control in an C# SWF application. I have a field in an Access Table which is of the Date/Time type. In access the dates are stored with a time index aswell, but I don't need to care about those. So lets say I have this in the table 11-02-2003 11:36:21 02-05-...more >>

multiple inserts
Posted by jeff at 8/22/2003 11:33:14 AM
i want to perform multiple inserts by value into an access table in 1 operation. i know how to do this with multiple, separate queries... i don't want to do that because it is making my save operation take 5 minutes for a 3mb database, which is ridiculous. here is what i've tried and none of t...more >>

how do you create a datatable clone but with a different row count
Posted by hs at 8/22/2003 11:31:19 AM
Hi I have a DataTable object which contains say 1000 records. I want to clone this DataTable but the clone must only contain the rows i want e.g. rows 0-240 (i.e. a subset) thanks hs ...more >>

Query XML document using ADO.NET?
Posted by Dave at 8/22/2003 5:59:29 AM
Hi, Are there other ways to query an XML document using ADO.NET besides using XPath as outlined in http://support.microsoft.com/default.aspx?scid=kb;en- us;308333? Thanks, Dave...more >>

DataForm Wizard only for OLEDB?
Posted by Rainer Halanek at 8/22/2003 3:19:21 AM
Hi, When I use the data form wizard to generate a form for a table in my SQL database, then it creates the DataAdapter and the Connection automatically. So far so good, but it generates the OLEDB connection and not the SQL connection object (same with the dataadapter). Is it possible to tel...more >>

Disconnected data model
Posted by Alex at 8/22/2003 12:48:26 AM
When I use SqlCommand directly instead of using DataAdapter/DataSet model, f.e. I open the connection, execute the query and then close it virtually right away(the exception handling should it get there is just a few instructions). Isn't this really what DataAdapter does underneath, I'm just not...more >>

ExecuteNonQuery() vs ExecuteReader()
Posted by Alex at 8/22/2003 12:43:31 AM
I think that in the case of calling SPROC, both methods will execute the SPROC, but ExecuteReader() will return the resultset from the last SELECT query contained in the SPROC, should it contain one. Is this correct? ...more >>


DevelopmentNow Blog