Ailene
Ailene
FINAL REQUIREMENTS
Bachelor of Science in Information Technology
2nd Semester, 2022-2023
SYSTEM DESIGN
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.
Republic of the Philippines
CAGAYAN STATE UNIVERSITY
Maura, Aparri, Cagayan 3515
Aparri Campus
SYSTEM DATABASE
SYSTEM CODE
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data.OleDb;
using System.Windows.Forms;
namespace CRUD_REQUIREMENTS
{
public partial class Form1 : Form
{
private OleDbConnection connection = new OleDbConnection();
private OleDbDataAdapter adapter;
private DataTable dataTable;
public Form1()
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.
Republic of the Philippines
CAGAYAN STATE UNIVERSITY
Maura, Aparri, Cagayan 3515
Aparri Campus
{
InitializeComponent();
connection.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=""C:\Users\Public\Ailene
Recheta\Recheta.accdb""";
Table();
}
private void Table()
{
connection.Open();
adapter = new OleDbDataAdapter("Select * From recordData", connection);
dataTable = new DataTable();
adapter.Fill(dataTable);
recordTable.DataSource = dataTable;
connection.Close();
}
}
else
{
MessageBox.Show("Select a row to Delete", "System", MessageBoxButtons.OK, MessageBoxIcon.Stop);
}
}
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.
Republic of the Philippines
CAGAYAN STATE UNIVERSITY
Maura, Aparri, Cagayan 3515
Aparri Campus
}
else
{
MessageBox.Show("Select a row to Update", "System", MessageBoxButtons.OK, MessageBoxIcon.Stop);
}
}
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.
Republic of the Philippines
CAGAYAN STATE UNIVERSITY
Maura, Aparri, Cagayan 3515
Aparri Campus
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.
Republic of the Philippines
CAGAYAN STATE UNIVERSITY
Maura, Aparri, Cagayan 3515
Aparri Campus
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.
Republic of the Philippines
CAGAYAN STATE UNIVERSITY
Maura, Aparri, Cagayan 3515
Aparri Campus
}
else
{
MessageBox.Show("Select a row to Update", "System", MessageBoxButtons.OK,
MessageBoxIcon.Stop);
}
}
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.
Republic of the Philippines
CAGAYAN STATE UNIVERSITY
Maura, Aparri, Cagayan 3515
Aparri Campus
}
else
{
MessageBox.Show("Select a row to Delete", "System", MessageBoxButtons.OK,
MessageBoxIcon.Stop);
}
}
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.
Republic of the Philippines
CAGAYAN STATE UNIVERSITY
Maura, Aparri, Cagayan 3515
Aparri Campus
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.
Republic of the Philippines
CAGAYAN STATE UNIVERSITY
Maura, Aparri, Cagayan 3515
Aparri Campus
The “Delete” Button allows users to remove specific entries from the database.
Upon clicking the button, a confirmation Dialogbox appears to tell that the record
is deleted.
The “Update” button enables users to modify existing records within the database.
Once Clicked, it dialogBox show that tell you to select a row to update. A form
with pre-populated data appears, allowing users to make necessary changes before
saving the updated information
The”Create” Button allows users to add new entries to the database. Upon clicking
the button, a form with empty fields will not add, so you need to fill all the field.
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.
Republic of the Philippines
CAGAYAN STATE UNIVERSITY
Maura, Aparri, Cagayan 3515
Aparri Campus
Submitted by:
AILENE RECHETA
Student, Bachelor of Science in Information Technology
NESLYN MECATE
Student, Bachelor of Science in Information Technology
ROBELYN VALENCIA
Student, Bachelor of Science in Information Technology
(07 8 ) 8 88 0 78 6
CSU is a university with global stature in the arts, culture, agriculture and fisheries, the CORE VALUES c su a p a rri@g m a il.c o m
sciences as well as technological and professional fields. a p a rri,c su .e d u .p h
Competence
Cagayan State University shall produce globally competent graduates through excellent Social Responsibility
instruction, innovative and creative research, responsive public service and productive Unifying Presence
industry and community engagement.