Tagged Questions

0
votes
2answers
39 views

PHP continue statement

Hello Guys When reading a PHP book I wanted to try my own (continue) example. I made the following code but it doesn't work although everything seems to be ok $num2 = 1; whil …
0
votes
1answer
40 views

sqlserver connection to jsp

in my system sytemproperties show the path c:\Program Files\Microsoft SQL Server\100\DTS\Binn\ so it's path is not issues
0
votes
2answers
30 views

sqlserver connection to jsp

ClassNotFoundException SQlServer Connection page <%@ page import="java.sql.*" %> <% Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver").newInstance(); %> < …
2
votes
9answers
3k views

‘CONTINUE’ keyword in Oracle 10g PL/SQL

Hi everyone, I'm migrating a TSQL stored procedure to PL/SQL and have encountered a problem - the lack of a CONTINUE keyword in Oracle 10g. I've read that Oracle 11g has this as …
1
vote
7answers
393 views

Looping best practices

I have a very large loop that loops a 1000 rows. I exit the loop if magic value 1 is found. If magic value 1 is not found but magic value 2 is found then the loop needs to skip to …
3
votes
11answers
552 views

Continue in nested while loops

In this code sample, is there any way to continue on the outer loop from the catch block? while { // outer loop while { // inner loop try { …
1
vote
3answers
288 views

Applescript equivalent of “continue”?

Hi, I have a simple 'repeat with' in an AppleScript, and would like to move on to the next item in the "repeat" conditionally. Basically I'm looking for something similar to "conti …
1
vote
3answers
243 views

Continue an interrupted dowload on iPhone

Hello ! I use NSURLConnection to download large files from the web on iPhone. I use the "didReceiveData" method to append data to a file in the Documents folder. It works fine. I …
0
votes
3answers
1k views

C# Foreach Loop - Continue Issue

I have a problem with a continue statement in my C# Foreach loop. I want it to check if there is a blank cell in the datagridview, and if so, then skip printing the value out and …
0
votes
5answers
547 views

Continue in while inside foreach

In the following C# code snippet I have a 'while' loop inside a 'foreach' loop and I wish to jump to the next item in 'foreach' when a certain condition occurs. foreach (string ob …
10
votes
18answers
804 views

Continue Considered Harmful?

Should developers avoid using continue in C# or its equivalent in other languages to force the next iteration of a loop? Would arguments for or against overlap with arguments about …
4
votes
6answers
1k views

Continue keyword in Java

I saw this keyword for the first time and I was wondering if some one could explain to me what it does. The situation in which I saw the keyword was: if(obj.isFlagSet()) ; e …
1
vote
3answers
366 views

In C++: Is it possible to have a named enum be continued in a different file?

For example: Base class header file has: enum FOO { FOO_A, FOO_B, FOO_C, FOO_USERSTART }; Then the derived class has: enum FOO { FOO_USERA=FOO_USERSTART FOO_USERB, FOO_USERC } …