Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3793884
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T12:50:40+00:00 2026-05-19T12:50:40+00:00

I want to delete multiple records from access database using array. The array is

  • 0

I want to delete multiple records from access database using array.
The array is loaded dynamically from file names.

Then i query the database, and see if the database column values are matching with the array values, if not then delete it, if matches then do not delete it.

the problem is that:
Following is the code that deletes all records irrespective of the where in Condition.

arrays = Directory.GetFiles(sdira, "*", SearchOption.AllDirectories).Select(x => Path.GetFileName(x)).ToArray();
    fnames.AddRange(arrays); 

    here I have use also for loop but that also didnt help me out :( like for(int u = 0; u < arrays.length; u++) { oledbcommand sqlcmd = new oledbcommand ("delete from table1 where name not in ("'+arrays[u]+"')",sqlconnection);
   I am using this one currently foreach(string name in arrays)
   {
       OleDbCommand sqlcmd = new OleDbCommand("delete from table1 where name not in ('" + name + "')", sqlconnection);
       sqlcmd.ExecuteNonQuery();                                  }`
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T12:50:41+00:00Added an answer on May 19, 2026 at 12:50 pm

    One problem is that your code is confusing.

    string [] a = {"" 'a.jpg', 'b.jpg', 'c.jpg' "}
    

    First, you have double ” in the beginning,should only be one.

    string [] a = {" 'a.jpg', 'b.jpg', 'c.jpg' "}
    

    Then this created a string array with one element,

    a[0] = "'a.jpg', 'b.jpg', 'c.jpg'";
    

    Then you do a foreach on this which natuarly ony executes once resulting in this query:

    delete from table1     where name not in ('a.jpg', 'b.jpg', 'c.jpg')
    

    But when you load the array dynamically you probably get this array

    a[0] = 'a.jpg';
    a[1] = 'b.jpg';
    a[1] = 'c.jpg';
    

    which will execute 3 times in the foreach resulting in the following 3 queries

    delete from table1     where name not in ('a.jpg')
    delete from table1     where name not in ('b.jpg')
    delete from table1     where name not in ('c.jpg')
    

    After the second one the table will be empty.

    You should try this instead:

    string[] names = { "a.jpg", "b.jpg","c.jpg","j.jpg" };
    string allNames = "'" + String.Join("','", names) + "'";
    
    OleDbCommand sqlcmd = new OleDbCommand("delete from table1  where name not in (" + allNames + ")", sqlconnection); 
    sqlcmd.ExecuteNonQuery(); 
    

    Where names is created dynamically ofcause and this will result in the following query matching your test:

    delete from table1     where name not in ('a.jpg', 'b.jpg', 'c.jpg')
    

    My preferred way to dynamically fill an array is to use a list instead as a pure array is fixed in size and any change needs to create a new array.

    You can loop over a list as eacy as an array.

    List<string> names = new List<string>();
    //or user var keyword
    var names = new List<string>();
    

    Then just use add method to add elements, loop this as needed.

    names.Add(filename);
    

    Then for the concatenation:

    string allNames = "'" + String.Join("','", names.ToArray()) + "'";
    

    And you are done.

    Or you could use

    string[] filePaths = Directory.GetFiles(@"c:\MyDir\", "*.jpg");
    string[] names = filePaths.ToList().ConvertAll(n => n.Substring(n.LastIndexOf(@"\") + 1)).ToArray();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using the script from http://webdeveloperplus.com/jquery/ajax-multiple-file-upload-form-using-jquery/ I modified the onComplete to add a link
I want to delete foo() if foo() isn't called from anywhere.
I want to perform cascade delete for some tables in my database, but I'm
Hey guys i wrote a quick test. I want delete to call deleteMe which
I want to delete all but the 4 newest directories in my parent directory.
I want to delete a folder that contains thousands of files and folders. If
I want to delete all directories and subdirectories under a root directory that are
I want to delete an DOM element right after fading out. What I did
I have a datalist with a OnDeleteCommand=Delete_Command. I want the delete a record with
I'm writing an application in PHP 5. I want to delete some rows in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.