Giter VIP home page Giter VIP logo

powerbuilder-front-box's Introduction

powerbuilder-front-box

Use ibm db2 connection, and use this sql:

create table w_produto (
  pk_id integer,
  descricao varchar(4),
  preco decimal(15, 2),
  quantidade decimal(15, 2)
 );
  
CREATE TABLE client(
  name varchar(23),
  id integer primary key generated always as identity not null default 0
);
GO
COMMIT

INSERT INTO
  client ( name ) values ('Roberta Franca')

Create table phone(
  description varchar(11),
  id integer primary key generated always as identity not null,
  parentid integer not null
);

Create table Historico_compras(
  Id integer primary key generated always as identity not null,
  Caixa varchar(23) not null,
  Custototal decimal(20,2),
  Funcionario varchar(23) not null,
  Data date not null, 
  Hora time not null
);
GO
COMMIT

Create table last_user(
  Id integer primary key generated always as identity not null,    
  Name varchar(31) not null,
  Senha varchar(31) not null
);

CREATE TABLE NivelDeAcesso(
  name varchar(64) primary key not null,
  categoria varchar(64) not null
);

CREATE TABLE TelasAcessiveis(
  Nivel integer not null primary key,
  Venda char(1) not null,
  Caduser char(1) not null,
  CadProd char(1) not null,
  CadNiveis char(1) not null,
  Imprimir char(1) not null,
  Historico char(1) not null,
  Categorias char(1) not null
);

Create table Chat_CISSMIRIM(
  Id integer primary key generated always as identity NOT NULL,
  Nome VARCHAR(50) NOT NULL,
  Companhia VARCHAR (30) NOT NULL,
  Mensagem VARCHAR (500)NOT NULL,
  Data DATE NOT NULL,
  Hora VARCHAR(8) NOT NULL
);
GO COMMIT

Create table LOG (
  Id integer primary  key generated always as identity,
  Usuario varchar(31) not null,
  Acao varchar(300) not null,
  data date not null,
  horavarchar(8) not null
);

##Config your db2 acess in the root folder change the file "properties" and put inside that your username and your password

##Login In the login use User: suporte Password: suporte and all privileges will be given to you.

picture alt

powerbuilder-front-box's People

Watchers

Willian Alberto Lauber avatar  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.