What are statements in JAVA ?
Answer / almeja del río
* A Java statement is the smallest unit that is a
complete instruction.
* Statements must end with a semi-colon.
* Statements generally contain expressions (expressions
have a value)
* One of the simplest is the Assignment Statement
<variable> = <expression>;
For Example:
int height;
height = 34;
| Is This Answer Correct ? | 0 Yes | 2 No |
Why do we need jdbc driver?
What is jdbc and odbc in java?
What does executeupdate return in jdbc?
Why do we need a jdbcrowset like wrapper around resultset?
What type of driver called is pure Java driver?
What is the difference between jdbc and odbc?
Discuss the significances of jdbc.
Explain how data flows from view to db and reverse
Why is odbc needed?
Statement, PrepareStatement and Callable all these are interfaces. Thought it is a interface how come we are creating objects and calling methods("preparestatement()") in it. In which class this method is defined. Please let me know. Thanks in advance. example: PreparedStatement pre = con.prepareStatement( "UPDATE COFFEES SET SALES = ? WHERE COF_NAME LIKE ?");
What are the differences between stored procedure and functions?
What causes the "No suitable driver" error?