Used Visual Basic .NET Code Sample: Create a Database for Windows?


Editors’ Review

Download.com staff
This application demonstrates executing SQL statements via ADO.NET, creating database objects, and displaying data in a DataGrid.
  • Pros

    • Illustrates SQL execution with ADO.NET
    • Creates database, table, stored procedure, and view
    • Populates table with Northwind database data
    • Queries table into a DataSet
    • Binds DataSet to a DataGrid for display
  • Cons

    • Limited to Northwind database example
    • No mention of error handling implementation
    • No indication of cross-platform compatibility
    • Focuses solely on basic ADO.NET functionality
    • Style object usage is basic

Used Visual Basic .NET Code Sample: Create a Database for Windows?


Explore More


Full Specifications

GENERAL
Release
Latest update
Version
1
OPERATING SYSTEMS
Platform
Windows
Operating System
  • Windows 2000
  • Windows 10
  • Windows NT
  • Windows XP
Additional Requirements
Windows NT/2000/XP
POPULARITY
Total Downloads
3,869
Downloads Last Week
0

Report Software

Program available in other languages


Last Updated


User Reviews

4/5

1 User Votes


Developer’s Description

Explain how to run SQL statements from code using ADO .NET.

This application shows you how to execute SQL statements from code using ADO .NET. It creates a database, a table, a stored procedure, and a view. SQL statements are then executed that populate the table with data from the Northwind database. This table is then queried to fill a DataSet which is subsequently bound to a DataGrid for display. Table and column style objects are used to affect the appearance of the DataGrid. This version is the first release on CNET Download.com.


Download.com
Your review for Visual Basic .NET Code Sample: Create a Database