與過程一樣,您也可以在資料庫中建立函數並將其儲存。
以下是在(MySQL)資料庫中建立函數的語法:
以下是在(MySQL)資料庫中建立函數的語法: p>
CREATE FUNCTION Function_Name(input_arguments) RETURNS output_parameter BEGIN declare variables; statements . . . . . . . . . . return data_type; END
假設資料庫中有一個名為Emp的表,其內容如下:
+--------+------------+----------------+ | Name | DOB | Location | +--------+------------+----------------+ | Amit | 1970-01-08 | Hyderabad | | Sumith | 1970-01-08 | Vishakhapatnam | | Sudha | 1970-01-05 | Vijayawada | +--------+------------+----------------+
下面給出了創建函數的範例。在這裡,我們建立一個名為 getDob() 的函數,它接受員工的姓名,檢索並傳回 DOB 列的值。
CREATE FUNCTION getDob(emp_name VARCHAR(50)) RETURNS DATE BEGIN declare dateOfBirth DATE; select DOB into dateOfBirth from EMP where Name = emp_name; return dateOfBirth; END
您可以像預存程序一樣使用 CallableStatement 物件呼叫函數,以使用您需要的 JDBC 程式呼叫函數。
連接到資料庫。
建立一個 PreparedStatement 物件並向其建構函式傳遞以字串格式呼叫函數。
將值設定為佔位符。
執行 Callable 語句。
以下是從JDBC 呼叫函數的查詢:
{? = call getDob(?)}
如您所觀察到的,查詢包含佔位符(?),就像準備好的語句和可調用語句一樣。
在上面的查詢中,第一個佔位符表示函數的回傳值,第二個佔位符表示輸入
您需要使用CallableStatement 介面的registerOutParameter() 方法將表示傳回值的佔位符註冊為輸出參數。對於此方法,您需要傳遞一個表示佔位符位置的整數值和一個表示(參數的)sql 類型的整數變數
cstmt.registerOutParameter(1, Types.DATE);
使用 setString() 方法將值設為輸入參數。 (因為 getDoc() 函數接受 VARCHAR 類型的值)。
以下 JDBC 程式執行函數 getDob 並擷取結果: p>
import java.sql.CallableStatement; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Types; public class CallingFunctionsUsingCallable2 { public static void main(String args[]) throws SQLException { //Registering the Driver DriverManager.registerDriver(new com.mysql.jdbc.Driver()); //Getting the connection String mysqlUrl = "jdbc:mysql://localhost/sampleDB"; Connection con = DriverManager.getConnection(mysqlUrl, "root", "password"); System.out.println("Connection established......"); //Preparing a CallableStatement CallableStatement cstmt = con.prepareCall("{? = call getDob(?)}"); cstmt.registerOutParameter(1, Types.DATE); cstmt.setString(2, "Amit"); cstmt.execute(); System.out.print("Date of birth: "+cstmt.getDate(1)); } }
Connection established...... Date of birth: 1970-01-08
以上是我們可以使用 Callable 語句來呼叫函數嗎?能用 JDBC 的範例解釋一下嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!