You are on page 1of 6

Sample Database and tables for Crystal Reports tutorials https://net-informations.com/vb/crystal-report/vb.net_crystal_report_sa...

Home AI Data Science Python HTML


JavaScript Java C# jQuery ASP.Net VB.Net

Sample Database for


running Crystal Reports
tutorials
In the subsequent section, you will be
guided through the process of creating a
sample database, along with its respective
tables and data, which will serve as the
foundation for running the Crystal Reports
Tutorials. It is important to note that all
examples featured in the VB.NET Crystal
Reports Tutorials are built upon this
specific database.

To initiate the process, the first step entails


creating the database itself. Assign the
name "crystaldb" to this database,
ensuring a unique and identifiable
designation.

Create a DataBase "crystaldb"

In the crystaldb database , create three


tables.

OrderMaster
OrderDetails

1 of 6 9/26/2023, 5:37 AM
Sample Database and tables for Crystal Reports tutorials https://net-informations.com/vb/crystal-report/vb.net_crystal_report_sa...

Product

OrderMaster

OrderMaster_id
OrderMaster_date
OrderMaster_customer
OrderMaster_createduser

OrderDetails

OrderDetails_id
OrderDetails_masterid
OrderDetails_productid
OrderDetails_qty

Product

Product_id
Product_name
Product_price Microsoft .Net
Framework
Tutorials
The following picture shows the relations
VB.NET
of each table : Language
Basics Tutorials
VB.NET
Program Flow
Control
Tutorials
VB.Net
Graphical User
Interface

2 of 6 9/26/2023, 5:37 AM
Sample Database and tables for Crystal Reports tutorials https://net-informations.com/vb/crystal-report/vb.net_crystal_report_sa...

VB.NET
SQL command for creation tables are Collections
Tutorials
follows :
VB.NET String
Tutorials
CREATE TABLE [dbo].[OrderMaster] ( VB.NET Files
[OrderMaster_id] [int] NOT NULL , Tutorials
[OrderMaster_date] [datetime] NULL ,
[OrderMaster_customername] [varchar] (50),
VB.Net Excel
Automation
[OrderMaster_createduser] [varchar] (50)
) ON [PRIMARY] VB.NET Crystal
Reports
Tutorials
CREATE TABLE [dbo].[OrderDetails] (
VB.NET
[OrderDetails_id] [int] NOT NULL , Communications
[OrderDetails_masterid] [int] NULL , Tutorial
[OrderDetails_productid] [int] NULL ,
[OrderDetails_qty] [int] NULL VB.NET
) ON [PRIMARY]
ADO.NET
Tutorial
ADO.NET Data
CREATE TABLE [dbo].[Product] ( Providers
[Product_id] [int] NOT NULL , Tutorial
[Product_name] [varchar] (50) ,
VB.NET
[Product_price] [numeric](18, 0) NULL ADO.NET
) ON [PRIMARY] Dataset Tutorial
ADO.NET
Enter data to the tables : DataAdapter
and Dataset
Order Master Table Data VB.NET
ADO.NET
DataView
Tutorial
VB.NET
Remoting
Order Details Table Data Tutorial
VB.NET XML
Tutorial

3 of 6 9/26/2023, 5:37 AM
Sample Database and tables for Crystal Reports tutorials https://net-informations.com/vb/crystal-report/vb.net_crystal_report_sa...

VB.NET
DataGridView
Tutorial

Product Table Data

Next > Step by Step help for creating a simple

Crystal Reports in VB.NET

Related Topics

4 of 6 9/26/2023, 5:37 AM
Sample Database and tables for Crystal Reports tutorials https://net-informations.com/vb/crystal-report/vb.net_crystal_report_sa...

Step by Step help for creating a simple

Crystal Reports in VB.NET

VB.NET Crystal Reports from multiple

tables

VB.NET Crystal Reports String parameter

VB.NET Crystal Reports Integer parameter

More Related Topics.....

5 of 6 9/26/2023, 5:37 AM
Sample Database and tables for Crystal Reports tutorials https://net-informations.com/vb/crystal-report/vb.net_crystal_report_sa...

Tutorial Interview Resources


Artificial Questions Colors
Intelligence Python IT and Web
Data Science JavaScript C# Examples
Python Java Windows 11
R jQuery Difference
HTML Data Science Between
JavaScript Oops
Java C#
jQuery .Net
C# Framework
Asp.Net Asp.Net
VB.Net Vb.Net

Search : Mail to : rapsmvk@gmail.com

Net-Informations.com (C) 2023


All Rights Reserved. All other trademarks are property of their respective owners.
Home | SiteMap | Terms | About

6 of 6 9/26/2023, 5:37 AM

You might also like