Date of registration: Jul 5th 2003
Location: Malaga
Occupation: Senior Cloud Solution Engineer bei Oracle
This post has been edited 1 times, last edit by "Sinan" (Jun 18th 2005, 9:35am)
|
|
Source code |
1 2 3 4 5 |
try {
Class c = Class.forName(driver);
} catch (ClassNotFoundException e) {
handleError(e);
}
|

Date of registration: Jul 5th 2003
Location: Malaga
Occupation: Senior Cloud Solution Engineer bei Oracle

Date of registration: Jul 5th 2003
Location: Malaga
Occupation: Senior Cloud Solution Engineer bei Oracle


Date of registration: Jul 5th 2003
Location: Malaga
Occupation: Senior Cloud Solution Engineer bei Oracle


This post has been edited 1 times, last edit by "Sinan" (Jun 18th 2005, 3:34pm)
Date of registration: Oct 9th 2002
Location: Zimbabwe-Island Ost Beiträge: 3.427
Occupation: Informatiker
|
|
Source code |
1 |
EXECUTE moviedb.getMyVotes(1); |
|
|
Source code |
1 2 3 4 |
DECLARE BEGIN moviedb.getMyVotes(1); END; |
|
|
Source code |
1 2 3 4 5 |
FEHLER in Zeile 1: ORA-06550: Zeile 1, Spalte 7: PLS-00201: Bezeichner 'MOVIEDB.GETMYVOTES' muss deklariert werden ORA-06550: Zeile 1, Spalte 7: PL/SQL: Statement ignored |
Date of registration: Oct 9th 2002
Location: Zimbabwe-Island Ost Beiträge: 3.427
Occupation: Informatiker
|
|
Source code |
1 2 3 4 5 |
getMyVote = connection.prepareCall( "{? = call moviedb.getMyVotes(?)}" );
getMyVote.registerOutParameter(1, Types.NUMERIC);
...
getMyVote.setInt(2, movie);
getMyVote.executeUpdate();
|
Quoted
Original von vier
also ich habs exakt so gemacht, wie auf Folie 6-19 beschrieben und es funktioniert einwandfrei

Date of registration: Oct 9th 2002
Location: Zimbabwe-Island Ost Beiträge: 3.427
Occupation: Informatiker
Quoted
Original von drNick
Probiers mal mit getMyVote nicht getMyVotes.