Justin Cooney
Web Development Tips and Examples
Category: ADO.NET
-
In this example I will review and give examples in C# and VB.NET how to get and save a file stored in an Image datatype in a SQL Server table. Here is a link to a list of other articles I have written about using .NET with SQL Server.
-
If you are retrieving or adding values from and to your database then you will know the difficulties that can be caused by NULL values. The notorious InvalidCastException is one example of receiving a NULL value from your database into an ASP.NET object that doesn’t know what to do with database NULL values. Here’s typical example…
-
By definition, a scalar query will return the first column of the first row of a database query. In plain English this means it will return a single value. This can come in handy at times. In the next series of articles I will cover the basic data connections including basic examples in C# and…