17 |
|
{$IFDEF FPC} |
18 |
|
{$mode delphi} |
19 |
|
{$codepage utf8} |
20 |
+ |
{$define HASREQEX} |
21 |
|
{$ENDIF} |
22 |
|
|
23 |
|
interface |
32 |
|
TTest1 = class(TTestBase) |
33 |
|
private |
34 |
|
procedure DoQuery(Attachment: IAttachment); |
35 |
+ |
procedure WriteAttachmentInfo(Attachment: IAttachment); |
36 |
|
public |
37 |
|
function TestTitle: AnsiString; override; |
38 |
|
procedure RunTest(CharSet: AnsiString; SQLDialect: integer); override; |
64 |
|
end; |
65 |
|
end; |
66 |
|
|
67 |
+ |
procedure TTest1.WriteAttachmentInfo(Attachment: IAttachment); |
68 |
+ |
begin |
69 |
+ |
writeln(outfile,'DB Connect String = ',Attachment.GetConnectString); |
70 |
+ |
writeln(outfile,'DB Charset ID = ',Attachment.GetDefaultCharSetID); |
71 |
+ |
writeln(outfile,'DB SQL Dialect = ',Attachment.GetSQLDialect); |
72 |
+ |
writeln(outfile,'DB Remote Protocol = ', Attachment.GetRemoteProtocol); |
73 |
+ |
writeln(outfile,'DB ODS Major Version = ',Attachment.GetODSMajorVersion); |
74 |
+ |
writeln(outfile,'DB ODS Minor Version = ',Attachment.GetODSMinorVersion); |
75 |
+ |
writeln(outfile,'User Authentication Method = ',Attachment.GetAuthenticationMethod); |
76 |
+ |
end; |
77 |
+ |
|
78 |
|
function TTest1.TestTitle: AnsiString; |
79 |
|
begin |
80 |
|
Result := 'Test 1: Create and Drop a Database'; |
93 |
|
Attachment.DropDatabase; |
94 |
|
|
95 |
|
writeln(OutFile,'Creating a Database using an SQL Statement'); |
96 |
< |
createSQL := Format('CREATE DATABASE ''%s'' USER ''%s'' PASSWORD ''%s'' DEFAULT CHARACTER SET %s', |
96 |
> |
createSQL := Format('create database ''%s'' USER ''%s'' PASSWORD ''%s'' DEFAULT CHARACTER SET %s', |
97 |
|
[Owner.GetNewDatabaseName, Owner.GetUserName, Owner.GetPassword, CharSet]); |
98 |
|
Attachment := FirebirdAPI.CreateDatabase(createSQL,SQLDialect); |
99 |
|
WriteDBInfo(Attachment.GetDBInformation([isc_info_db_id,isc_info_db_SQL_Dialect])); |
100 |
+ |
WriteAttachmentInfo(Attachment); |
101 |
+ |
PrintDPB(Attachment.getDPB); |
102 |
+ |
|
103 |
+ |
{$IFDEF HASREQEX} |
104 |
+ |
{Demonstrate reconnect when database created with SQL Statement} |
105 |
+ |
try |
106 |
+ |
Attachment.Disconnect; |
107 |
+ |
Attachment.Connect; |
108 |
+ |
except on E:Exception do |
109 |
+ |
writeln(OutFile,'Error reconnecting to Database: ',E.Message); |
110 |
+ |
end; |
111 |
+ |
{$ENDIF} |
112 |
|
|
113 |
|
writeln(OutFile,'Dropping Database'); |
114 |
|
if Attachment <> nil then |
123 |
|
|
124 |
|
Attachment := FirebirdAPI.CreateDatabase(Owner.GetNewDatabaseName,DPB); |
125 |
|
|
126 |
+ |
WriteAttachmentInfo(Attachment); |
127 |
+ |
|
128 |
|
writeln(OutFile,'Dropping Database'); |
129 |
|
if Attachment <> nil then |
130 |
|
Attachment.DropDatabase; |
140 |
|
Exit; |
141 |
|
end; |
142 |
|
WriteDBInfo(Attachment.GetDBInformation([isc_info_db_id,isc_info_ods_version,isc_info_ods_minor_version])); |
143 |
+ |
WriteAttachmentInfo(Attachment); |
144 |
|
|
145 |
|
{Querying Database} |
146 |
|
DoQuery(Attachment); |