SQL Server Central is supported by Red Gate Software Ltd.
 
Log in  ::  Register  ::  Not logged in
Search:  
 
 

Articles with tags Programming, .Net Rss

Refine your search with one of the following additional tags (with number of items):

Miscellaneous (9)     Strategies (4)     System Development Life Cycle (2)     Security (1)    
SQL Server 7, 2000 (7)     T-SQL (4)     Advanced (1)     Sharepoint (1)    
Visual Basic 6 (6)     Career (2)     ASP (1)     SQL-DMO (1)    
ADO (5)     Certifications (2)     Database Design (1)     SS2K5 - CLR Integration (1)    
Administering (4)     Development (2)     News (1)     Testing (1)    
SQL Server 2005 (4)     Performance Tuning (2)     Performance Tuning and Scaling (1)     VSTS (1)    

Search for any content tagged Programming & .Net

   Items 1 to 20 of 72    Next 20 >>
 

Accessing Data from a Mobile Application

Data access is an important aspect of developing applications with the Microsoft® .NET Compact Framework for Windows Mobile® devices. By using the existing architecture to send and receive data between your mobile application and your application server, you can pass data with either DataSets, custom objects, or scalar values.  Read more...
By Additional Articles 2008/01/18 | Source: Microsoft MSDN | Category: Programming
Rating: (not yet rated)  Rate this |  Briefcase | 1,127 reads

SQL Server Connection Strings

Some common and not so common connection strings for the .NET SqlConnection object. The article includes .NET sample code and some tricks to increase the supportability of your application.  Read more...
By Additional Articles 2007/11/26 | Source: SQLTeam.com | Category: .Net
Rating: (not yet rated)  Rate this |  Briefcase | 3,591 reads

Events in SharePoint 2007

Windows® SharePoint® Services (WSS) 3.0 offers developers many significant improvements for building custom business solutions based on SharePoint sites. One of the biggest developer-focused enhancements has to do with a new infrastructure for handling server-side events.  Read more...
By Additional Articles 2007/11/23 | Source: Microsoft MSDN | Category: Sharepoint
Rating: (not yet rated)  Rate this |  Briefcase | 1,246 reads

.NET Building Blocks: Build a Configurable Database Credential Selector

This handy control gives you everything you need to control how users input usernames, passwords, select servers, and choose connection types.   Read more...
By Additional Articles 2007/11/20 | Source: DevX | Category: Programming
Rating: (not yet rated)  Rate this |  Briefcase | 1,531 reads

Create a Custom Test Interface Provider for Team Sytem

This article looks at fuzzy testing and how to build a provider for your own use.  Read more...
By Additional Articles 2007/11/16 | Source: Microsoft MSDN | Category: .Net
Rating: (not yet rated)  Rate this |  Briefcase | 1,075 reads

Working With SqlParameter in .NET

Interacting with SQL Server from .NET is a radical change from the old OLEDB/ODBC method. Raj Vasant brings us some easy ways to work with parameters passed in with the ADO SQLCommand.   Read more...
By Vasant Raj 2007/11/09 (first posted: 2006/03/22) | Source: SQLServerCentral.com | Category: .Net
Rating: |  Discuss |  Briefcase | 22,516 reads

Getting Small: Building Lightweight Web Applications with Small-Footpr

Not every application needs a full-featured enterprise-scale database. In such cases, you can reduce costs and save resources by using a small-footprint database.  Read more...
By Additional Articles 2007/08/29 | Source: DevX | Category: .Net
Rating:  Rate this |  Briefcase | 1,577 reads

Building Wiki Web Sites with ASP.NET and SQL Server

You can easily build Wiki Web sites with ASP.NET and SQL Server and provide your teams with one of the most powerful ways of collaborating on the Web.   Read more...
By Additional Articles 2007/08/23 | Source: DevX | Category: .Net
Rating:  Rate this |  Briefcase | 2,888 reads

.NET 3.5 Language Enhancements

LINQ may be getting the most attention in the forthcoming .NET 3.5, but there are also several new language features that add functionality and make life easier for the programmer.   Read more...
By Additional Articles 2007/08/09 | Source: SimpleTalk | Category: .Net
Rating:  Rate this |  Briefcase | 2,259 reads

AJAX Stock Symbol Drop-down List

A web look up of a huge list of stock symbols from an MS SQL database.  Read more...
By Additional Articles 2007/07/30 | Source: CodeProject.com | Category: .Net
Rating:  Rate this |  Briefcase | 1,948 reads

CLR: 9 Reusable Parallel Data Structures and Algorithms

This column is less about the mechanics of a common language runtime (CLR) feature and more about how to efficiently use what you’ve got at your disposal.  Read more...
By Additional Articles 2007/07/27 | Source: Microsoft MSDN | Category: .Net
Rating:  Rate this |  Briefcase | 1,814 reads

A T-SQL Regular Expression Library for SQL Server 2005

This article shows the reader how to construct a library of scalar and table valued functions for SQL Server 2005 to perform regular expression analysis.  Read more...
By Additional Articles 2007/07/25 | Source: CodeProject.com | Category: .Net
Rating:  Rate this |  Briefcase | 2,858 reads

CLR: Reflections on Reflection

Do you wish callers of your library could describe their types to you programmatically? Read a little about reflection in CLR Programming.  Read more...
By Additional Articles 2007/07/20 | Source: Microsoft MSDN | Category: .Net
Rating:  Rate this |  Briefcase | 1,537 reads

Microsoft Indexing Service HOW-TO

This article describes how to provide full text search using Microsoft Indexing Service in .NET applications.  Read more...
By Additional Articles 2007/07/20 | Source: CodeProject.com | Category: .Net
Rating:  Rate this |  Briefcase | 1,388 reads

SQL Agent - A Job Scheduler Framework

In this article, I'll show you how to create a generic scheduler that runs on a Windows Service. The scheduler will be able to accept pluggable actions that we can develop later implementing a custom interface. Background  Read more...
By Additional Articles 2007/07/17 | Source: CodeProject.com | Category: .Net
Rating:  Rate this |  Briefcase | 2,377 reads

CLR: Digging into IDisposable

One of the major productivity benefits that the common language runtime (CLR) offers developers of managed code is that the garbage collector (GC) makes sure any memory allocated on the managed heap is cleaned up after it is no longer needed.  Read more...
By Additional Articles 2007/07/13 | Source: Microsoft MSDN | Category: .Net
Rating:  Rate this |  Briefcase | 1,538 reads

Debugging Stored Procedures in Visual Studio 2005

This article walks through the basics of debugging stored procedures using Visual Studio 2005. It covers breakpoints, watches and stepping through code.  Read more...
By Additional Articles 2007/07/05 | Source: SQLTeam.com | Category: .Net
Rating:  Rate this |  Briefcase | 3,495 reads

Gathering RSS Feeds using Visual Studio and RSS.NET

If you would like to learn how to build and customize your very own Windows service to retrieve posts from multiple RSS feeds, and then store those posts in a SQL Server database, let John Papa guide you through his tutorial.  Read more...
By Additional Articles 2007/05/25 | Source: SimpleTalk | Category: .Net
Rating:  Rate this |  Briefcase | 1,406 reads

Use SqlBulkCopy to Quickly Load Data from your Client to SQL Server

The .NET Framework 2.0 introduces a very handy new class in the System.Data.SqlClient namespace called SqlBulkCopy that makes it very easy and efficient to copy large amounts of data from your .NET applications to a SQL Server database. You can even use this class to write a short .NET application that can serve as a "middleman" to move data between database servers.  Read more...
By Additional Articles 2007/05/09 | Source: SQLTeam.com | Category: .Net
Rating:  Rate this |  Briefcase | 2,954 reads

Dynamic Images and Databases

Should you store dynamically generated web-site graphics in a database or is the file system the better option? Dino illustrates how to make this decision in ASP.NET  Read more...
By Additional Articles 2007/04/17 | Source: Dr. Dobbs | Category: .Net
Rating:  Rate this |  Briefcase | 2,708 reads
   Items 1 to 20 of 72    Next 20 >>
 
Most popular

Building Wiki Web Sites with ASP.NET and SQL Server

You can easily build Wiki Web sites with ASP.NET and SQL Server and provide your teams with one of the most powerful ways of collaborating on the Web.   Read more...
By Additional Articles 2007/08/23 | Source: DevX | Category: .Net
Rating:  Rate this |  Briefcase | 2,888 reads

The Enterprise Library for .NET Framework 2.0

What does a SQL Server developer care about the Enterprise Library? SQL Server guru David Poole is starting to work with .NET and brings us his perspective on what this library is and how it benefits those who develop against SQL Server.   Read more...
By David Poole 2006/08/21 | Source: SQLServerCentral.com | Category: .Net
Rating: |  Discuss |  Briefcase | 13,750 reads

Debugging Stored Procedures in Visual Studio 2005

This article walks through the basics of debugging stored procedures using Visual Studio 2005. It covers breakpoints, watches and stepping through code.  Read more...
By Additional Articles 2007/07/05 | Source: SQLTeam.com | Category: .Net
Rating:  Rate this |  Briefcase | 3,495 reads