| Thread | Last Post | Replies |
|
| Context Connection & Using | 30 Nov 2007 22:27 GMT | 5 |
When working with the SQL CLR, should I be using "using" when referring to the "context connection"?
|
| Connection Pooling | 30 Nov 2007 21:55 GMT | 3 |
I have a static function in a class, everytime I call this function, I am creating a SQLconnection, open it, use it, and null it, All my functions and application logic is like this, Every connection is creating self connection object and null it after the
|
| dataadapter vs tableadapter - whats the difference? | 30 Nov 2007 19:05 GMT | 4 |
I have a book called "Hitchhiker's Guide to Visual Studio and SQL Server". It has a chapter on using dataAdapters, and another chapter on using tableAdapters. The problem is, they seem to overlap in what they can do, and I don't know when I would use one and when I would
|
| Named DataSets with Grids, How to enable a SqlServer Application role | 30 Nov 2007 03:28 GMT | 3 |
I'm a novice in .Net development (switched after 10 years Delphi). I've created a small test app with a Dataset in it. The Dataset contains a TableAdapter. In my Form i'm using a grid that uses that named dataset to display an
|
| Importing Data | 30 Nov 2007 01:11 GMT | 9 |
I'm new to SQL stuff. All I have is MS SQL Express that came with Visual Studio 2005, and SQL Server Management Studio Express, which I downloaded and installed. I've created a new table, and I have a comma-delimited text file of data I
|
| Reading a SQLCLR Stored Proc. Result | 30 Nov 2007 00:32 GMT | 15 |
How do you consume the result of a SQLCLR stored procedure when it returns a SQLDataRow? Thanks.
|
| DataTable foreign key | 29 Nov 2007 20:23 GMT | 7 |
is it possible to extract the DataColumn which is a foreign key of another table. foreach (DataRelation dr in dsIlce.Tables[0].ParentRelations) { Console.WriteLine("123");
|
| SqlDataAdapter.Update questions | 29 Nov 2007 19:41 GMT | 2 |
I'd like to know exactly how an UpdateCommand determines that there are concurency issues, specifically if I have supplied I created my own update command, instead of using the SqlCommandBuilder. The issue I am facing is I have setup a column in my DataTable to map to an
|
| DataSet.xsd and Locale | 29 Nov 2007 14:09 GMT | 1 |
When I build a DataSet with the DataSet Designer (DataSet.xsd) every DataTable has the property "Locale" which is set (I guess) to the current collate of the table of the SQL Server (I'm using MSSQL). I want to build a web application which is language neutral or translated in ...
|
| vs2008 or not | 28 Nov 2007 18:49 GMT | 7 |
I need to start a new win form project and I am wondering if I should choose 2008 at this stage. My questions are following; 1. Is 2008 much different from vs 2005 in terms of skill set to prohibit smooth development of application ie is there a steep learning curve for
|
| ADO.net 2.0 Error on line 51 authentication mode=Windows of web.co | 27 Nov 2007 22:38 GMT | 1 |
To run an example from ADOnet 2.0 SBS 2005 edition, I opened a web site from File System (Microsoft Press folder). I can review the Design and Source tabs; however, running an example program, e.g. Chap 14-Finished, showed the following error:
|
| How to get a column size in VB.net | 27 Nov 2007 20:29 GMT | 2 |
How could I get a column size from a datareader or a datatable? We're moving from VB6 where the code looks like this: rcs.Fields(i).Size (rcs is a recordset). Thank for your help
|
| Bind Property of Child-Objecty to DataGridView | 27 Nov 2007 14:52 GMT | 4 |
I want to bind a proeprty of a child object to a DataGridView, but it doesn't work. For instance: Imagen that I have an object Company, and this object company has a child
|
| How skip a row in gridview with code? | 27 Nov 2007 09:07 GMT | 1 |
I have a databound gridview. How do I skip a row if a certain condition exists? (In VB.NET) For example... Protected Sub GridView2_RowDataBound(ByVal sender As Object, ByVal e As
|
| TableAdapters and Transactions again! | 27 Nov 2007 07:34 GMT | 12 |
I've read various articles/blogs/posts about adding transactions to TableAdapters, mainly from Sahil Malik. I'm certainly not an expert in ADO.NET but I understand what transactions, commands and connections are. Sadly I've been unable to get the examples I found to work.
|