This document describes concepts related to working with data in Visual Basic .NET, including:
1. Setting a connection string involves specifying the data provider technology and data source location in the ConnectionString property of a Connection object, separated by a semicolon. An example connects to an Access database on the C drive.
2. Record navigation in a DataSet can be done by incrementing or decrementing a counter variable and calling a NavigateRecords subroutine. Buttons can move to the first, last, previous, and next records.
3. Arrays can be fixed-size or dynamic. Fixed arrays have a set size declared while dynamic arrays can be resized at runtime using ReDim. Multidimensional arrays