Added bit Time Professionals ITA as sponsor

This commit is contained in:
Daniele Teti 2023-11-13 16:46:35 +01:00
parent 0528833163
commit 5aa1e07056
4 changed files with 6 additions and 43 deletions

View File

@ -171,8 +171,9 @@ While DMVCFramework is born from the head of Daniele Teti from bit Time Professi
|COMPANY NAME | LOGO|
|-----------------------------------------------------------------------|------------------------------------------------------------------------|
|[bit Time Professionals ](https://www.bittimeprofessionals.com) |![](docs/sponsorlogos/bittimeprofessionals.png) |
|[bit Time Software](https://www.bittime.it) |![](docs/sponsorlogos/bittimesoftware.png) |
|[bit Time Professionals](https://www.bittimeprofessionals.com) |![](docs/sponsorlogos/bittimeprofessionals.png) |
|[bit Time Professionals - ITALY](https://www.bittimeprofessionals.it) |![](docs/sponsorlogos/bittimeprofessionals_italy.png) |
|[bit Time Software](https://www.bittime.it) |![](docs/sponsorlogos/bittimesoftware.png) |

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -2,11 +2,6 @@
-- PostgreSQL database dump
--
-- Dumped from database version 12.2
-- Dumped by pg_dump version 12.2
-- Started on 2021-03-20 00:27:53
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
@ -18,15 +13,10 @@ SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
DROP DATABASE IF EXISTS activerecorddb;
--
-- TOC entry 2910 (class 1262 OID 58852)
-- Name: activerecorddb; Type: DATABASE; Schema: -; Owner: postgres
--
CREATE DATABASE activerecorddb WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'Italian_Italy.1252' LC_CTYPE = 'Italian_Italy.1252';
ALTER DATABASE activerecorddb OWNER TO postgres;
\connect activerecorddb
@ -407,7 +397,7 @@ ALTER TABLE public.phones OWNER TO postgres;
create table integers_as_booleans (
create table public.integers_as_booleans (
id bigint not null generated by default as identity primary key,
done_bool boolean not null default false,
done_int smallint not null default 0
@ -604,32 +594,3 @@ ALTER TABLE ONLY public.orders
ALTER TABLE ONLY public.phones
ADD CONSTRAINT phones_id_person_fkey FOREIGN KEY (id_person) REFERENCES public.people(id);
-- Completed on 2021-03-20 00:27:54
--
-- PostgreSQL database dump complete
--
drop function if exists sp_get_customers;
create or replace function sp_get_customers() returns table(
id bigint,
code varchar,
description varchar,
city varchar,
rating integer)
language plpgsql
as
$$
begin
return query
select
c.id, c.code, c.description, c.city, c.rating
from
customers c
order by c.description;
end
$$;
select * from sp_get_customers();

View File

@ -373,6 +373,7 @@ end;
procedure SaveColors;
begin
Init;
GSavedForeGround := GForeGround;
GSavedBackGround := GBackGround;
end;