1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

*** empty log message ***

This commit is contained in:
Michael Meskes
2000-09-21 11:56:08 +00:00
parent eab8ee9524
commit b4c8d47ab0
5 changed files with 22 additions and 8 deletions

View File

@ -42,7 +42,7 @@ exec sql end declare section;
ECPGdebug(1, dbgs);
strcpy(msg, "connect");
exec sql connect to unix:postgresql://localhost:5432/mm;
exec sql connect to unix:postgresql://127.0.0.1:5432/mm;
strcpy(msg, "create");
exec sql create table meskes(name char(8), born integer, age smallint, married date, children integer);
@ -124,5 +124,6 @@ exec sql end declare section;
if (dbgs != NULL)
fclose(dbgs);
return (0);
}