Pages

Showing posts with label SQL Server. Show all posts
Showing posts with label SQL Server. Show all posts

Monday, 7 December 2015

Buy Restaurant POS Sample

Point of Sale System(POS) is a Computer software that develop by many programmers to help the restaurant upon managing the Sales. This software can generate Daily Sales, Monthly Sales and even the yearly Sales. The Items or the product encoded to the database has been organize and easy to update the new prices and other details to be modify.

Here is the image of Sample Point of Sale System.
User Login Windows

Monday, 14 October 2013

Insert Command in SQL Server 2003 Using Stored Procedure

Insert Command is an sqlcommand of inserting data from your front end (Programming languages) to back end (Database). There is many popular database use in programming, and one of those database is SQL Server with many version Such as 2003 version until present version.

One of the Purpose of database is to stored the data which is a collection of  information. To stored the data,  programmer's need to create a command to insert into database.


Sample Code to Insert Data into SQL Server 2003 Database Using the Stored Procedure.

First Step
        Create a Database on Sql Server 2003 where the data stored .

Second Step
        after Creating Database, Create new table into your Database.

Third Stes
        Create an Insert SqlCommand in Stored Procedure for inserting or saving the data into your created table.


Here is the Sample Code of Insert Command
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go

-- =============================================
-- Author: <Author,,Name>
-- Create date: <Create Date,,>
-- Description: <Description,,>
-- =============================================
ALTER PROCEDURE [dbo].[InsertCommandSample] //Name of Store Procedure

@Parameter1 VARCHAR(50),
@Paramerte2 VARCHAR(50),
@Parameter3 VARCHAR(50)

AS
BEGIN
Insert INTO [TableName]
(
FieldName1,
FieldName2,
FieldName3
)
values
(
@Parameter1,
@Parameter2,
@Parameter3
)

END



Here is the Code of Connecting the Insert Command of stored Procedure into Visual Basic.net
Imports System.Data.SqlClient
Public Class Sample_InsertCommand


Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click

     Using con=OpenConn 'Function of Database Connection
     
   Try
      cmd.CommandType = CommandType.StoredProcedure
      cmd.CommandText = "InsertCommandSample"          '--------Name of  Insert Command of StoredProcedure
      With cmd.Parameters
       .Clear()
       .Add("@Parameter1", SqlDbType.NVarChar).Value = TextBox1.text
       .Add("@Parameter2", SqlDbType.NVarChar).Value=  TextBox2.text
       .Add("@Parameter3", SqlDbType.NVarChar).Value = TextBox3.text
  End With
       Cmd.ExecuteNonQuery()
       msgBox("Save SuccessFully.")
  Catch ex As Exception
              msgBox("Ex.message")
  End Try

End Using

End Sub
End Class