Categories
HOW TO Microsoft SQL Server VB.NET Visual Studio

HOW TO read text from data type Image of Microsoft SQL Server [VB.NET]

The data type image of Microsoft SQL Server is used to store
Variable-length binary data from 0 through 2^31-1 (2,147,483,647) bytes.

The following sample code show how to read text from data type Image using VB.NET:

[sourcecode language=”vb”]
Dim query As String = "SELECT [Image Column] FROM MyTable"
Dim conn As New SqlConnection(connString)
Dim cmd As New SqlCommand(query, conn)

conn.Open()
Dim rdr As SqlDataReader = cmd.ExecuteReader(CommandBehavior.SingleRow)

Try
If rdr.Read() Then
Dim i As Integer = rdr.GetOrdinal("Image Column")
If Not rdr.IsDBNull(i) Then
Dim bufferSize = rdr.GetBytes(i, 0, Nothing, 0, Integer.MaxValue) – 1
Dim outbyte(bufferSize) As Byte
rdr.GetBytes(i, 0, outbyte, 0, bufferSize)
Dim enc As New System.Text.ASCIIEncoding
MyTextBox.Text = enc.GetString(outbyte, 0, bufferSize)
End If
End If
Finally
‘ Always call Close when done reading

rdr.Close()

‘ Always call Close when done reading

conn.Close()
End Try
[/sourcecode]

Did my HOW TO help you?

Categories
7.0 7.5 HOW TO Microsoft SDK 7.1 VB.NET Visual Studio Windows Phone

HOW TO change the StartPage of the Windows Phone 7 Application in Visual Studio 2010 [VB.NET]

Expand the My Project folder into Solution Explorer of the Visual Basic Windows Phone Application Project and Open the WMAppManifest.xml file.
Change the NavigationPage with you new StartPage filename (case sensitive).

[sourcecode language=”xml”]
<Tasks>
<DefaultTask Name ="_default" NavigationPage="MainPage.xaml"/>
</Tasks>
[/sourcecode]

Did my solution solve your problem?