0
votes
3answers
47 views
sql while loop with date counter
I need to do something like this in sql:
declare @StartDate varchar(10)
declare @EndDate varchar(10)
set @StartDate='12/31/2008'
set @EndDate='1/11/2009'
Declare @date varchar = …
0
votes
3answers
104 views
Multiple ajax content requests in a loop
I'm trying to load some ajax content into a table, unfortunately it's only loading the last row multiple times instead of loading each new rows.
This is the code I'm using:
funct …
0
votes
1answer
25 views
While select in mysql stored procuder
i will try a select into my Stored Procedure like a while
e.g.
while ( select * from t where t.c = 1 into test_t )
{
var_t_e = test_t.c;
}
i hope i can be helped here. :)
0
votes
1answer
25 views
PHP Oracle Ref Cursor
Okay, I am new to PHP/Oracle connectors. What I am trying to do is call a simple stored procedure which accepts a id number and returns a value. It works fine if there is a match, …
0
votes
3answers
122 views
C# non-blocking socket without while(true) loop
I'm just trying to make some socket programming, using non-blocking sockets in c#.
The various samples that i've found, such as this, seems to use a while(true) loop, but this app …
0
votes
4answers
89 views
Loop to check time in VB.NET
So I'm kind of new to VB and am just playing around with a little project, I currently need a loop that is constantly checking the systems clock to see if it's equal to a certain t …
2
votes
8answers
2k views
do-while loop in python?
Hello
I need to emulate a do-while loop in a python. But, unfortunately, following
straightforward code does not work:
l = [ 1, 2, 3 ]
i = l.__iter__()
s = None
while True :
if …
0
votes
3answers
47 views
first data is missing in while loop
Hi
i am trying to get data from db, but in while loop, first data is coming blank, let me show you
<?php
$query = "SELECT * FROM `artists` WHERE label_id = '$id' ORDER BY name …
0
votes
3answers
36 views
Using implode to group information from acquired in a whileloop (problem solved)
Solved the problem thanks to all of your tips. Thanks a lot for all the answers. d(^_^d)
I am having the following problem. I have the numbers 1/2/3/4/5/6 and I want to separate …
0
votes
2answers
29 views
$_SESSION up all $_POST variables?
Is there any way to do some kind of while() for each post variable and session it up... like in mysql
while($row=mysql_fetch_array($result)){
echo($row['name'];
}
But to get thi …
0
votes
2answers
45 views
AddHour / AddMinute store within a ListItem
Hello all,
I am using c#.net
I have two times pulled from a database (‘earliest start time’ and ‘latest end time’).
I want to loop through and add ‘in-between’ times to a list.
…
0
votes
2answers
89 views
Array inside an array PHP SQL
I have tried everything I can think of for the last two days. I'm truly lost. I need to get this line of code to change based on my database. I have tried everything I could find o …
3
votes
3answers
238 views
Why is this C code buggy?
On another question, Jerry Coffin pointed out the following:
It's (probably) not really related to your question, but while (!feof(fileptr)){ is pretty much a guaranteed bug.
…
1
vote
4answers
238 views
String index out of bounds? (Java, substring loop)
This program I'm making for a COSC course isn't compiling right, I keep getting the error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out o …
0
votes
4answers
124 views
How to make my own while Loop just like Wordpress Loop?
Hi all programmer... im new here and new in PHP too..
Just wondering how to make my own flexible loop just like in Wordpress...
Note im not talking about wordpress.. I want to imp …
