Skip to content

Commit

Permalink
Added bit Time Professionals ITA as sponsor
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleteti committed Nov 13, 2023
1 parent 0528833 commit 5aa1e07
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 43 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |



Expand Down
Binary file modified docs/sponsorlogos/bittimeprofessionals_italy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 2 additions & 41 deletions samples/data/activerecorddb_postgresql_script.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
--

DROP DATABASE IF EXISTS activerecorddb;
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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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();
1 change: 1 addition & 0 deletions sources/MVCFramework.Console.pas
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@ procedure SetDefaultColors;

procedure SaveColors;
begin
Init;
GSavedForeGround := GForeGround;
GSavedBackGround := GBackGround;
end;
Expand Down

0 comments on commit 5aa1e07

Please sign in to comment.