source: branches/lazarus/UConfig.Sample.pas

Last change on this file was 61, checked in by george, 15 years ago
  • Přidáno: Další chybějící soubory s vývojové větve ve Free Pascalu.
File size: 309 bytes
Line 
1unit UConfig;
2
3{$mode objfpc}{$H+}
4
5interface
6
7uses
8 Classes, SysUtils;
9
10const
11 WebServerAddress: string = 'http://localhost/';
12 DatabaseHostname: string = 'localhost';
13 DatabaseDatabase: string = 'web';
14 DatabaseUserName: string = 'user';
15 DatabasePassword: string = 'password';
16
17implementation
18
19end.
20
Note: See TracBrowser for help on using the repository browser.