Skip to content
Advertisement

How to check if a specific data exist in a text file before insert it to SQL database table?

I have a Employee text file employee.txt which has some data in it.

For instance:

I want to read the file and get the empId from it and pass it to a function to check if that empId already exists in the SQL database table.

Here’s my function:

How do I get the empId from the file?

And how to insert the file in the SQL database table if a emptId is not already in it?

Should I pass the employee.txt file as string to a function like that and use Bulk Insert to add the data in the database:

Or pass it as a

Advertisement

Answer

Based on your issue, you would like to insert the empId from the file to database if the

empId is not in database.

You can use the following code to get it.

The next is my txt file:

enter image description here

The next is my database record:

enter image description here

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement