diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2010-12-04 13:28:03 +0900 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-05 19:13:22 +0000 |
commit | f20ff43473f1d33be368d61b8d0f6bcbb644df14 (patch) | |
tree | 9bff166cbb029acf5c3a7a7a68d67151ae47d9e3 /qadevOOo/runner/stats | |
parent | e98d09d0ad16a6bd843f0b691d39dd0bac4ff357 (diff) |
Replace all occured, occurance etc.
Diffstat (limited to 'qadevOOo/runner/stats')
-rw-r--r-- | qadevOOo/runner/stats/SQLExecution.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qadevOOo/runner/stats/SQLExecution.java b/qadevOOo/runner/stats/SQLExecution.java index c55da50327a6..a357c22804d9 100644 --- a/qadevOOo/runner/stats/SQLExecution.java +++ b/qadevOOo/runner/stats/SQLExecution.java @@ -81,7 +81,7 @@ public class SQLExecution { /** * Open a connection to the DataBase - * @return True, if no error occured. + * @return True, if no error occurred. */ public boolean openConnection() { if(m_bConnectionOpen) return true; @@ -108,7 +108,7 @@ public class SQLExecution { /** * Close the connection to the DataBase - * @return True, if no error occured. + * @return True, if no error occurred. */ public boolean closeConnection() { if (!m_bConnectionOpen) return true; @@ -130,7 +130,7 @@ public class SQLExecution { * @param command The command to execute. * @param sqlInput Input values for the command. * @param sqlOutput The results of the command are put in this Hashtable. - * @return True, if no error occured. + * @return True, if no error occurred. */ public boolean executeSQLCommand(String command, Hashtable sqlInput, Hashtable sqlOutput) throws IllegalArgumentException { @@ -144,7 +144,7 @@ public class SQLExecution { * @param sqlOutput The results of the command are put in this Hashtable. * @param mergeOutputIntoInput The output of the result is put into the * sqlInput Hashtable. - * @return True, if no error occured. + * @return True, if no error occurred. */ public boolean executeSQLCommand(String command, Hashtable sqlInput, Hashtable sqlOutput, boolean mergeOutputIntoInput) throws IllegalArgumentException { @@ -160,7 +160,7 @@ public class SQLExecution { Vector sqlCommand = new Vector(); sqlCommand.add(""); boolean update = false; - // synchronize all "$varname" occurences in the command string with + // synchronize all "$varname" occurrences in the command string with // values from input StringTokenizer token = new StringTokenizer(command, " "); while (token.hasMoreTokens()) { |