This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ## THIS THE THE OLD WAY | |
| ## Nowadays, simply follow the Compose installation instructions in the official documentation: https://docs.docker.com/compose/install/ | |
| # get latest docker compose released tag | |
| COMPOSE_VERSION=$(curl -s https://api.github.com/repos/docker/compose/releases/latest | grep 'tag_name' | cut -d\" -f4) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ALTER TABLE public.table_name RENAME COLUMN old_name TO new_name; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.mkyong.com/maven/how-to-install-maven-in-windows/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://documentation.veremes.net/public/veremap.pro/installation/postgresql-postgis/postgresql_9.1-win.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DECLARE | |
| region_id integer; | |
| BEGIN | |
| -- Insertion de la région de la réunion | |
| INSERT INTO t1(t1_f1, t1_f2, t1_f3, t1_f4) | |
| VALUES ('Réunion', '04', TRUE, 1) RETURNING id INTO t1_id; | |
| -- Insertion du département région | |
| INSERT INTO t2(t2_f1, t2_f2, t2_f3, t1fk_t1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE t1_t2 ( | |
| t1fk_t1 integer references t1(id), | |
| t2fk_t2 integer references t2(id) default 1 | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RAISE INFO 'param : %', param-value; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DO $$ | |
| DECLARE | |
| counter integer := 0; | |
| BEGIN | |
| FOR i IN 1..10 | |
| LOOP | |
| counter := couter + i; | |
| END LOOP; | |
| END; | |
| $$ LANGUAGE plpgsql; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INSERT INTO public.personne( | |
| id, | |
| age, | |
| prenom, | |
| nom) | |
| SELECT | |
| id, | |
| age, | |
| prenom, // Donnees précédante | |
| 'Dupont' // modification valeur |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| xhtml | Face : | |
| <p:row> | |
| <p:column> | |
| <p:outputLabel for="zone-geographique" | |
| value="#{messages['operationimmobiliere.zone.geographique']} : " /> | |
| </p:column> | |
| <p:column> | |
| <p:selectOneRadio id="zone-geographique" | |
| value="#{operationImmobiliereFace.codeZoneGeographique}"> |
NewerOlder