⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e287. listing the system functions supported by a database.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
This example gets a list of system functions that a database supports. 
    try {
        DatabaseMetaData dbmd = connection.getMetaData();
    
        // Get the list of system functions
        String[] systemFunctions = dbmd.getSystemFunctions().split(",\\s*");
    } catch (SQLException e) {
    }

Examples in an Oracle database include: 
    DUMP, GREATEST, GREATEST_LB, LEAST, LEAST_UB, NVL, UID, USER, USERENV, VSIZE

Examples in a MySQL database include: 
    DUMP, GREATEST, GREATEST_LB, LEAST, LEAST_UB, NVL, UID, USER, USERENV, VSIZE

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -