Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  test1.pgc   Sprache: unbekannt

 
Spracherkennung für: .pgc vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]

/*
 * this file tests all sorts of connecting to one single database.
 */

#include <stdlib.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>

/* do not include regression.h */

int
main(void)
{
exec sql begin declare section;
 char db[200];
 char pw[200];
exec sql end declare section;

 ECPGdebug(1, stderr);

 exec sql connect to ecpg2_regression as main;
 exec sql alter user regress_ecpg_user1 ENCRYPTED PASSWORD 'connectpw';
 exec sql disconnect;  /* <-- "main" not specified */

 exec sql connect to ecpg2_regression@localhost as main;
 exec sql disconnect main;

 exec sql connect to @localhost as main user regress_ecpg_user2;
 exec sql disconnect main;

 /* exec sql connect to :@TEMP_PORT@ as main user regress_ecpg_user2;
 exec sql disconnect main; */

 exec sql connect to tcp:postgresql://localhost/ecpg2_regression user regress_ecpg_user1 identified by connectpw;
 exec sql disconnect;

 exec sql connect to tcp:postgresql://localhost/ user regress_ecpg_user2;
 exec sql disconnect;

 strcpy(pw, "connectpw");
 strcpy(db, "tcp:postgresql://localhost/ecpg2_regression");
 exec sql connect to :db user regress_ecpg_user1 using :pw;
 exec sql disconnect;

 exec sql connect to unix:postgresql://localhost/ecpg2_regression user regress_ecpg_user1 using "connectpw";
 exec sql disconnect;

 exec sql connect to unix:postgresql://localhost/ecpg2_regression?connect_timeout=180 user regress_ecpg_user1;
 exec sql disconnect;

 /* wrong db */
 exec sql connect to tcp:postgresql://localhost/nonexistent user regress_ecpg_user1 identified by connectpw;
 exec sql disconnect;

 /* wrong port */
 exec sql connect to tcp:postgresql://127.0.0.1:20/ecpg2_regression user regress_ecpg_user1 identified by connectpw;
 /* no disconnect necessary */

 /* wrong password */
 exec sql connect to unix:postgresql://localhost/ecpg2_regression user regress_ecpg_user1 identified by "wrongpw";
 /* no disconnect necessary */

 return 0;
}

[Dauer der Verarbeitung: 0.17 Sekunden, vorverarbeitet 2026-08-08]

                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=434850
#Domains=655579