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...
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...
@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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.