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

📄 mysql_powfe.sql

📁 一个工作流设计及定义的系统,可以直接与数据库结合进行系统工作流程的定义及应用.
💻 SQL
字号:
---- mysql db schema for SQLPasswd------ $Id: mysql_powfe.sql,v 1.1 2004/06/26 13:45:50 jmettraux Exp $---- -- creates a database only for this 'passwd'-- it's adisable not to use the same db that Xdbc uses (expressions and -- workitems storage), nor the one that SqlHistory uses for its -- logging and tracing purposes.--drop database powfe;create database powfe;-- this user will have access to this db-- use mysql;-- -- insert into user --     (user, host, password) -- values --     ('powfe', '%', password('powfe'));-- flush privileges;--     -- grant select, insert, update, delete on powfe.* to powfe;-- flush privileges;---- creates the necessary tables--use powfe;-- create table puser-- (--     name varchar(100) not null,--     --     primary key (name)-- );create table pgranted(    username varchar(100) not null,    grantname varchar(100) not null,    primary key (username, grantname));create table pgrant(    name varchar(100) not null,    codebase varchar(255) not null,    primary key (name));create table pparameter(    pid int not null,    pgroup varchar(100) not null,    pkey varchar(100) not null,    pval varchar(255) not null,    primary key (pid, pgroup, pkey));

⌨️ 快捷键说明

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