How to Catch Duplicate Entry - Primary Key
This tutorial will guide you on how to determine if the primary key entered is already exist in the table. I created this tutorial in the hope to help newbie’s programmer solve this common problem.
Instead of displaying the default message cast by Visual Basic a message “Employee ID already exist. Please enter another Employee ID.” will appear.
For those who would like to see the source code without downloading the attachment here it is:
- Private Sub CmdAdd_Click()
- On Error GoTo err_CmdAdd_Click
- Dim cnData As New Connection
- Dim rst As New Recordset
- cnData.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\Data.mdb;Persist Security Info=False"
- With rst
- .CursorLocation = adUseClient
- .Open "SELECT * FROM Employees", cnData, adOpenStatic, adLockOptimistic
- .AddNew
- !EmployeeID = txtEmployeeID.Text
- !Firstname = txtFirstname.Text
- !Lastname = txtLastname.Text
- .Update
- MsgBox "Record added successfully...", vbInformation
- End With
- exit_err_CmdAdd_Click:
- Exit Sub
- err_CmdAdd_Click:
- If Err = -2147467259 Then
- MsgBox "Employee ID already exist. Please enter another Employee ID.", vbCritical
- Else
- MsgBox Err.Description, vbInformation
- End If
- End Sub
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Comments
You did't not specify the languge
vb6 using DAO
re: in Php Check Duplicate
same query ""check Duplicate
save the key returned when you create a record
Hi Sir
datagridview in visual basic
how to Textbox form click add button then msgbox (this number already exits in datagridivew enter another") in visual basic code
!
any body guys helpme
[email protected]
Success
Add new comment
- Add new comment
- 499 views