0
votes
1answer
11 views
prepared statement with aggregate function
how to use prepared statement with aggregate functions ?
0
votes
2answers
21 views
total two or more values under one ID in SQL
![alt text][1]
[1]: http://C:\Documents and Settings\Administrator\My Documents\My Pictures\Ashampoo Magical Snap 2\Magical Snap - 2009.11.16 23.07 - 003.jpg
In referring to the …
0
votes
5answers
66 views
JDBC Connection and Statement Classes
Since Connection and Statements are interfaces, interface methods will be abstract by default. How can we create Connection and Statement interfaces in our Java program while conn …
0
votes
2answers
44 views
Search select statement
I am creating a page which would have different field for the user to search from.
e.g. search by:
Grade: -dropdownlist1-
Student name: -dropdownlist2-
Student ID: -dropdownlis …
0
votes
6answers
153 views
What does this define statement mean?
I have this code to draw an ellipse in the screen but i dont understand what does it means the long define statement, and i only want to know how to write the same code without all …
0
votes
10answers
151 views
Question about return statements.
import java.util.Scanner;
public class GregorianYear
{
private int year;
public GregorianYear(int a)
{
year = a;
}
public void SetYear()
{
…
2
votes
2answers
63 views
I need help with VBscript.
I'm working on a vbscript program and I have got and "Expected Statement" Error. I cannot find the error. I've seen some samples of this error but they didn't help me.
I am new to …
0
votes
6answers
110 views
Does return inside an if() which is inside a for() - return from the if() or the for() ?
Ok, I'm unsure if my return line will end the for() loop or just the if() question?
Example:
for(;;) {
wait(1);
if(something) {
tokens = strTok(something, " ")
if(tok …
2
votes
5answers
151 views
whats the difference between a command and a statement
Often when reading about Tcl (e.g. http://antirez.com/articoli/tclmisunderstood.html) you read that "everything is a command". Sometimes you also hear how other languages are, lik …
1
vote
2answers
146 views
SQL Select Entire Row by Distinct Columns
Hello,
I need an sql statement which will allow me to select an entire row from oracle database, but by distinct columns. Here is a simplified database:
Project_Num Title …
0
votes
7answers
51 views
Explicit or implicit execution control statement use
I sometimes use
if (this._currentToolForeColor.HasValue)
return this._currentToolForeColor.Value;
else
throw new InvalidOperationException();
other times I use
if (this …
0
votes
4answers
87 views
MySQL statement using OUTER JOIN vs using WHERE to set conditions…
For the statements with INNER JOIN:
SELECT column(s) FROM table1
INNER JOIN table2 ON condition(s)
...
INNER JOIN tableN ON condition(s);
I can write an equivalent statement with …
1
vote
3answers
110 views
Getting “final” prepared statement from MySqlCommand
I have the following MySqlCommand:
Dim cmd As New MySqlCommand
cmd.CommandText = "REPLACE INTO `customer` VALUES( ?customerID, ?firstName, ?lastName)"
With cmd.Parameters
.AddWi …
0
votes
6answers
669 views
Executing an SQL statement in C#?
Hey guys i want to execute my SQL statement but im having synatx trouble, can someone help me understand what i doin wrong please?
Thanks, Ash.
public void AddToDatabase(string[] …
0
votes
4answers
129 views
JDBC Query excecution
I am facing an issue while executing queries.I use the same resultSet and statement for excecuting all the queries.Now I face an intermittent SQlException saying that connection is …
