Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: dlabdo
  • Content: Threads
  • Order by date
  1. dlabdo

    Multiple commits or One commit

    I have a c++ program that makes a one column change to one table. Now this change could happen for 10,000 entries at a time but here's what I'm getting at. Do you think its more efficient to keep track of all the unique id's of entries i need to change, then at the end add a thousand at a time...
  2. dlabdo

    Perl Database functions

    I'm writing a script that will generate insert statements for database tables. The only thing holding me back from making this work is finding out what types the columns are. If i know what type they are i can correctly format the values in my insert statement. is there a way to get the type...
  3. dlabdo

    Match on every array element

    @x = ("in the", "skipping along"); @y = ("we walk in the park", "we walk in the dark", "we walk holding hands", "we walk skipping along"); I need to create an if statement that basically does this to search the y array... if (if any whole element in the x array is within any element on the y...
  4. dlabdo

    Replacing a pattern

    Im trying to move around parts of a string a get rid of some of it too. Below is an example... $str = "a b c d e f g VALUES(h i j k l m n) Bound Values: o|p|q|r|s|t|u|"; What i need to do is move the o|p|q|r|s|t|u| into the parenthsis after "VALUES" and then erase the stuff after it. I know...

Part and Inventory Search

Back
Top