8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 13:23:03 +01:00

Be sure to attach via localhost so that the example actually works

This commit is contained in:
Paul Reeves 2020-08-17 17:02:09 +02:00
parent 4df1cf4723
commit e8fba1e1b5

View File

@ -57,7 +57,7 @@ int main (int argc, char** argv)
if (argc > 1)
strcpy(empdb, argv[1]);
else
strcpy(empdb, "employee.fdb");
strcpy(empdb, "localhost:employee.fdb");
if (isc_attach_database(status, 0, empdb, &DB, 0, NULL))
{