NCS Logo - Click for home page Northstar Developer Center
Platforms
All Platforms
.NET Framework (1.x - 4.x)
Active Server Pages
ASP.NET
C#
SQL Server
VB.NET
Visual Basic

Keywords
ASP.NET Authentication
ASP.NET Data Access
ASP.NET Page Events
.NET Data Types
.NET E-mail
.NET Functions
.NET System.IO
.NET System.Net
.NET System.Net.Sockets
Active Data Objects
ASP Architecture
ASP Black Belt
ASP Built-in Functions
ASP Built-in Objects
ASP Debugging
ASP Performance
ASP Security
ASP Syntax
ASP.NET Controls
ASP.NET Features
ASP.NET Master Pages
ASP.NET Security
Certifications
COM, DCOM, COM+
Data Access
E-Mail
Errors
HTML Tips
IIS
Object-Oriented Programming
SQL
Uncategorized ASP Tips
VB API Programming
VB Forms
VB Syntax

Book Support
Visual Basic 6 Bible
ASP Bible
ASP Weekend Crash Course
ASP.NET At Work
Creating Web Services

All articles with keyword "SQL"

Accessing SQL Server Through an ASP Page

At some of my client sites, the SQL Enterprise Manager TCP/IP port (typically 1203) is blocked by a firewall. Since getting a firewall port opened nearly requir...

Click for more...

Building SQL Statements

If you are building SQL statements within your ASP code that have data that might have single quote characters in it, be sure to replace every single quote with...

Click for more...

Building SQL Statements

If you are building SQL statements within your VB code that have data that might have single quote characters in it, be sure to replace every single quote with ...

Click for more...

Don't Use Reserved Words

A reader recently passed on a reminder to the rest of you to not use reserved words. While we know this in VB since VB will generally catch that type of syntax ...

Click for more...

Limiting Search Results

If you have a query that you know will return a lot of records, you can use the SQL TOP keyword to limit the number of records that are returned. I will often d...

Click for more...

Searching for Apostrophes

This question comes up a lot: how to search for a name like O'Brien from within SQL. The problem is that the single quote character is used to delimit strings w...

Click for more...