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 | |
---|
1 | unit UConfig;
|
---|
2 |
|
---|
3 | {$mode objfpc}{$H+}
|
---|
4 |
|
---|
5 | interface
|
---|
6 |
|
---|
7 | uses
|
---|
8 | Classes, SysUtils;
|
---|
9 |
|
---|
10 | const
|
---|
11 | WebServerAddress: string = 'http://localhost/';
|
---|
12 | DatabaseHostname: string = 'localhost';
|
---|
13 | DatabaseDatabase: string = 'web';
|
---|
14 | DatabaseUserName: string = 'user';
|
---|
15 | DatabasePassword: string = 'password';
|
---|
16 |
|
---|
17 | implementation
|
---|
18 |
|
---|
19 | end.
|
---|
20 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.