如何使用 JDBC API 在数据库中创建函数?
与存储过程类似,您也可以在数据库中创建函数并存储它们。
语法
以下是创建 (MySQL) 数据库中函数的语法
CREATE FUNCTION Function_Name(input_arguments) RETURNS output_parameter BEGIN declare variables; statements . . . . . . . . . . return data_type; END
要使用 JDBC API 在数据库中创建函数,您需要
**注册驱动程序**: 使用 **DriverManager** 类的 **registerDriver()** 方法注册类。将驱动程序类名作为参数传递给它。
**建立连接**: 使用 **DriverManager** 类的 **getConnection()** 方法连接到数据库。将 URL(字符串)、用户名(字符串)、密码(字符串)作为参数传递给它。
**创建语句**: 使用 **Connection** 接口的 **createStatement()** 方法创建一个 Statement 对象。
**执行查询**: 使用 Statement 接口的 execute() 方法执行查询
假设我们有一个名为 EmployeeDetails 的表,其描述如下
+----------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +----------+--------------+------+-----+---------+-------+ | Name | varchar(255) | YES | | NULL | | | DOB | date | YES | | NULL | | | Location | varchar(255) | YES | | NULL | | +----------+--------------+------+-----+---------+-------+
以下 JDBC 程序建立与 MySQL 数据库的连接,并创建一个名为 getDob() 的函数。
此函数接受一个 VARCHAR 类型的参数,表示员工的姓名,并返回一个表示指定员工出生日期的日期对象。
import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; public class CreatingFunctionsExample { 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://127.0.0.1/MyDatabase"; Connection con = DriverManager.getConnection(mysqlUrl, "root", "password"); System.out.println("Connection established......"); //Creating the Statement Statement stmt = con.createStatement(); //Query to create a function String query = "CREATE FUNCTION getDob(emp_name VARCHAR(50)) RETURNS DATE " + "BEGIN " + " declare dateOfBirth DATE;" + " select DOB into dateOfBirth from employeedetails where Name = emp_name;" + " return dateOfBirth;" + "END"; //Executing the query stmt.execute(query); System.out.println("Function Created......"); } }
输出
Connection established...... Function Created......
如果存在,则 *SHOW CREATE FUNCTION* **function_name** 命令显示指定函数的源代码,如果不存在,则会收到错误。
使用此命令验证 MySQL 数据库中是否创建了名为 getDob 的函数,如下所示
mysql> SHOW CREATE FUNCTION getDob; +----------+----------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------+----------------------+--------------------+ | Function | sql_mode | Create Function | character_set_client | collation_connection | Database Collation | +----------+----------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------+----------------------+--------------------+ | getDob | STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION | CREATE DEFINER=`root`@`localhost` FUNCTION `getDob`(emp_name VARCHAR(50)) RETURNS date BEGIN declare dateOfBirth DATE; select DOB into dateOfBirth from employeedetails where Name = emp_name; return dateOfBirth; END | utf8 | utf8_general_ci | utf8_general_ci | +----------+----------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------+----------------------+--------------------+ 1 row in set (0.00 sec)
广告