Code Monkey home page Code Monkey logo

personnel_search's Introduction

Project: Personnel_Search

What does this achieve

  • Get info of certain person or all persons in Oracle Database
  • Need to log in before searching

Getting start

  • Run SearchForm
java --enable-preview -cp ".\bin;.\lib\ojdbc11.jar" personnel.form.SearchForm
  • Log in via admin account(TABLE ADMIN_INFO)
  • Quit or search personnel info(TABLE PERSONNEL_INFO)

Notes

  • Searching is case sensitive
  • Table ADMIN_INFO
CREATE TABLE ADMIN_INFO (
    id int PRIMARY KEY,
    AdminName varchar(255) NOT NULL UNIQUE ,
    AdminPassword varchar(255) NOT NULL,
    CONSTRAINT Name_Length CHECK(LENGTH(AdminName) >= 8 AND LENGTH(AdminName) <= 20),
    CONSTRAINT Password_Length CHECK(LENGTH(AdminPassword) >= 6 AND LENGTH(AdminPassword) <= 15)
);
  • Table PERSONNEL_INFO
CREATE TABLE personnel_info (
    id int PRIMARY KEY,
    name varchar(255) NOT NULL,
    title varchar(255) NOT NULL, 
    skill varchar(255),
    address varchar(255) UNIQUE,
    phone varchar(255),
    salary varchar(255)
);

personnel_search's People

Contributors

ristolibera avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.