123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768 |
- unit pqconnection;
- {$mode objfpc}{$H+}
- {$Define LinkDynamically}
- interface
- uses
- Classes, SysUtils, sqldb, db, dbconst,
- {$IfDef LinkDynamically}
- postgres3dyn;
- {$Else}
- postgres3;
- {$EndIf}
- type
- TPQTrans = Class(TSQLHandle)
- protected
- PGConn : PPGConn;
- ErrorOccured : boolean;
- end;
- TPQCursor = Class(TSQLCursor)
- protected
- Statement : string;
- tr : TPQTrans;
- res : PPGresult;
- CurTuple : integer;
- Nr : string;
- end;
- { TPQConnection }
- TPQConnection = class (TSQLConnection)
- private
- FCursorCount : word;
- FConnectString : string;
- FSQLDatabaseHandle : pointer;
- FIntegerDateTimes : boolean;
- function TranslateFldType(Type_Oid : integer) : TFieldType;
- protected
- procedure DoInternalConnect; override;
- procedure DoInternalDisconnect; override;
- function GetHandle : pointer; override;
- Function AllocateCursorHandle : TSQLCursor; override;
- Procedure DeAllocateCursorHandle(var cursor : TSQLCursor); override;
- Function AllocateTransactionHandle : TSQLHandle; override;
- procedure PrepareStatement(cursor: TSQLCursor;ATransaction : TSQLTransaction;buf : string; AParams : TParams); override;
- procedure Execute(cursor: TSQLCursor;atransaction:tSQLtransaction; AParams : TParams); override;
- procedure AddFieldDefs(cursor: TSQLCursor; FieldDefs : TfieldDefs); override;
- function Fetch(cursor : TSQLCursor) : boolean; override;
- procedure UnPrepareStatement(cursor : TSQLCursor); override;
- function LoadField(cursor : TSQLCursor;FieldDef : TfieldDef;buffer : pointer) : boolean; override;
- function GetTransactionHandle(trans : TSQLHandle): pointer; override;
- function RollBack(trans : TSQLHandle) : boolean; override;
- function Commit(trans : TSQLHandle) : boolean; override;
- procedure CommitRetaining(trans : TSQLHandle); override;
- function StartdbTransaction(trans : TSQLHandle; AParams : string) : boolean; override;
- procedure RollBackRetaining(trans : TSQLHandle); override;
- procedure UpdateIndexDefs(var IndexDefs : TIndexDefs;TableName : string); override;
- function GetSchemaInfoSQL(SchemaType : TSchemaType; SchemaObjectName, SchemaPattern : string) : string; override;
- public
- constructor Create(AOwner : TComponent); override;
- published
- property DatabaseName;
- property KeepConnection;
- property LoginPrompt;
- property Params;
- property OnLogin;
- end;
- implementation
- uses math;
- ResourceString
- SErrRollbackFailed = 'Rollback transaction failed';
- SErrCommitFailed = 'Commit transaction failed';
- SErrConnectionFailed = 'Connection to database failed';
- SErrTransactionFailed = 'Start of transacion failed';
- SErrClearSelection = 'Clear of selection failed';
- SErrExecuteFailed = 'Execution of query failed';
- SErrFieldDefsFailed = 'Can not extract field information from query';
- SErrFetchFailed = 'Fetch of data failed';
- SErrPrepareFailed = 'Preparation of query failed.';
- const Oid_Bool = 16;
- Oid_Text = 25;
- Oid_Oid = 26;
- Oid_Name = 19;
- Oid_Int8 = 20;
- Oid_int2 = 21;
- Oid_Int4 = 23;
- Oid_Float4 = 700;
- Oid_Float8 = 701;
- Oid_Unknown = 705;
- Oid_bpchar = 1042;
- Oid_varchar = 1043;
- Oid_timestamp = 1114;
- oid_date = 1082;
- oid_time = 1083;
- oid_numeric = 1700;
- constructor TPQConnection.Create(AOwner : TComponent);
- begin
- inherited;
- FConnOptions := FConnOptions + [sqSupportParams];
- end;
- function TPQConnection.GetTransactionHandle(trans : TSQLHandle): pointer;
- begin
- Result := trans;
- end;
- function TPQConnection.RollBack(trans : TSQLHandle) : boolean;
- var
- res : PPGresult;
- tr : TPQTrans;
- begin
- result := false;
- tr := trans as TPQTrans;
- res := PQexec(tr.PGConn, 'ROLLBACK');
- if (PQresultStatus(res) <> PGRES_COMMAND_OK) then
- begin
- PQclear(res);
- result := false;
- DatabaseError(SErrRollbackFailed + ' (PostgreSQL: ' + PQerrorMessage(tr.PGConn) + ')',self);
- end
- else
- begin
- PQclear(res);
- PQFinish(tr.PGConn);
- result := true;
- end;
- end;
- function TPQConnection.Commit(trans : TSQLHandle) : boolean;
- var
- res : PPGresult;
- tr : TPQTrans;
- begin
- result := false;
- tr := trans as TPQTrans;
- res := PQexec(tr.PGConn, 'COMMIT');
- if (PQresultStatus(res) <> PGRES_COMMAND_OK) then
- begin
- PQclear(res);
- result := false;
- DatabaseError(SErrCommitFailed + ' (PostgreSQL: ' + PQerrorMessage(tr.PGConn) + ')',self);
- end
- else
- begin
- PQclear(res);
- PQFinish(tr.PGConn);
- result := true;
- end;
- end;
- function TPQConnection.StartdbTransaction(trans : TSQLHandle; AParams : string) : boolean;
- var
- res : PPGresult;
- tr : TPQTrans;
- msg : string;
- begin
- result := false;
- tr := trans as TPQTrans;
- tr.PGConn := PQconnectdb(pchar(FConnectString));
- if (PQstatus(tr.PGConn) = CONNECTION_BAD) then
- begin
- result := false;
- PQFinish(tr.PGConn);
- DatabaseError(SErrConnectionFailed + ' (PostgreSQL: ' + PQerrorMessage(tr.PGConn) + ')',self);
- end
- else
- begin
- tr.ErrorOccured := False;
- res := PQexec(tr.PGConn, 'BEGIN');
- if (PQresultStatus(res) <> PGRES_COMMAND_OK) then
- begin
- result := false;
- PQclear(res);
- msg := PQerrorMessage(tr.PGConn);
- PQFinish(tr.PGConn);
- DatabaseError(sErrTransactionFailed + ' (PostgreSQL: ' + msg + ')',self);
- end
- else
- begin
- PQclear(res);
- result := true;
- end;
- end;
- end;
- procedure TPQConnection.RollBackRetaining(trans : TSQLHandle);
- var
- res : PPGresult;
- tr : TPQTrans;
- msg : string;
- begin
- tr := trans as TPQTrans;
- res := PQexec(tr.PGConn, 'ROLLBACK');
- if (PQresultStatus(res) <> PGRES_COMMAND_OK) then
- begin
- PQclear(res);
- DatabaseError(SErrRollbackFailed + ' (PostgreSQL: ' + PQerrorMessage(tr.PGConn) + ')',self);
- end
- else
- begin
- PQclear(res);
- res := PQexec(tr.PGConn, 'BEGIN');
- if (PQresultStatus(res) <> PGRES_COMMAND_OK) then
- begin
- PQclear(res);
- msg := PQerrorMessage(tr.PGConn);
- PQFinish(tr.PGConn);
- DatabaseError(sErrTransactionFailed + ' (PostgreSQL: ' + msg + ')',self);
- end
- else
- PQclear(res);
- end;
- end;
- procedure TPQConnection.CommitRetaining(trans : TSQLHandle);
- var
- res : PPGresult;
- tr : TPQTrans;
- msg : string;
- begin
- tr := trans as TPQTrans;
- res := PQexec(tr.PGConn, 'COMMIT');
- if (PQresultStatus(res) <> PGRES_COMMAND_OK) then
- begin
- PQclear(res);
- DatabaseError(SErrCommitFailed + ' (PostgreSQL: ' + PQerrorMessage(tr.PGConn) + ')',self);
- end
- else
- begin
- PQclear(res);
- res := PQexec(tr.PGConn, 'BEGIN');
- if (PQresultStatus(res) <> PGRES_COMMAND_OK) then
- begin
- PQclear(res);
- msg := PQerrorMessage(tr.PGConn);
- PQFinish(tr.PGConn);
- DatabaseError(sErrTransactionFailed + ' (PostgreSQL: ' + msg + ')',self);
- end
- else
- PQclear(res);
- end;
- end;
- procedure TPQConnection.DoInternalConnect;
- var msg : string;
- begin
- {$IfDef LinkDynamically}
- InitialisePostgres3;
- {$EndIf}
- inherited dointernalconnect;
- FConnectString := '';
- if (UserName <> '') then FConnectString := FConnectString + ' user=''' + UserName + '''';
- if (Password <> '') then FConnectString := FConnectString + ' password=''' + Password + '''';
- if (HostName <> '') then FConnectString := FConnectString + ' host=''' + HostName + '''';
- if (DatabaseName <> '') then FConnectString := FConnectString + ' dbname=''' + DatabaseName + '''';
- if (Params.Text <> '') then FConnectString := FConnectString + ' '+Params.Text;
- FSQLDatabaseHandle := PQconnectdb(pchar(FConnectString));
- if (PQstatus(FSQLDatabaseHandle) = CONNECTION_BAD) then
- begin
- msg := PQerrorMessage(FSQLDatabaseHandle);
- dointernaldisconnect;
- DatabaseError(sErrConnectionFailed + ' (PostgreSQL: ' + msg + ')',self);
- end;
- // This does only work for pg>=8.0, so timestamps won't work with earlier versions of pg which are compiled with integer_datetimes on
- FIntegerDatetimes := pqparameterstatus(FSQLDatabaseHandle,'integer_datetimes') = 'on';
- end;
- procedure TPQConnection.DoInternalDisconnect;
- begin
- PQfinish(FSQLDatabaseHandle);
- {$IfDef LinkDynamically}
- ReleasePostgres3;
- {$EndIf}
- end;
- function TPQConnection.TranslateFldType(Type_Oid : integer) : TFieldType;
- begin
- case Type_Oid of
- Oid_varchar,Oid_bpchar,
- Oid_name : Result := ftstring;
- // Oid_text : Result := ftstring;
- Oid_text : Result := ftBlob;
- Oid_oid : Result := ftInteger;
- Oid_int8 : Result := ftLargeInt;
- Oid_int4 : Result := ftInteger;
- Oid_int2 : Result := ftSmallInt;
- Oid_Float4 : Result := ftFloat;
- Oid_Float8 : Result := ftFloat;
- Oid_TimeStamp : Result := ftDateTime;
- Oid_Date : Result := ftDate;
- Oid_Time : Result := ftTime;
- Oid_Bool : Result := ftBoolean;
- Oid_Numeric : Result := ftBCD;
- Oid_Unknown : Result := ftUnknown;
- else
- Result := ftUnknown;
- end;
- end;
- Function TPQConnection.AllocateCursorHandle : TSQLCursor;
- begin
- result := TPQCursor.create;
- end;
- Procedure TPQConnection.DeAllocateCursorHandle(var cursor : TSQLCursor);
- begin
- FreeAndNil(cursor);
- end;
- Function TPQConnection.AllocateTransactionHandle : TSQLHandle;
- begin
- result := TPQTrans.create;
- end;
- procedure TPQConnection.PrepareStatement(cursor: TSQLCursor;ATransaction : TSQLTransaction;buf : string; AParams : TParams);
- const TypeStrings : array[TFieldType] of string =
- (
- 'Unknown',
- 'text',
- 'int',
- 'int',
- 'int',
- 'bool',
- 'float',
- 'numeric',
- 'numeric',
- 'date',
- 'time',
- 'timestamp',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'int',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown',
- 'Unknown'
- );
- var s : string;
- i : integer;
- begin
- with (cursor as TPQCursor) do
- begin
- FPrepared := False;
- nr := inttostr(FCursorcount);
- inc(FCursorCount);
- // Prior to v8 there is no support for cursors and parameters.
- // So that's not supported.
- if FStatementType in [stInsert,stUpdate,stDelete, stSelect] then
- begin
- tr := TPQTrans(aTransaction.Handle);
- // Only available for pq 8.0, so don't use it...
- // Res := pqprepare(tr,'prepst'+name+nr,pchar(buf),params.Count,pchar(''));
- s := 'prepare prepst'+nr+' ';
- if Assigned(AParams) and (AParams.count > 0) then
- begin
- s := s + '(';
- for i := 0 to AParams.count-1 do if TypeStrings[AParams[i].DataType] <> 'Unknown' then
- s := s + TypeStrings[AParams[i].DataType] + ','
- else
- begin
- if AParams[i].DataType = ftUnknown then DatabaseErrorFmt(SUnknownParamFieldType,[AParams[i].Name],self)
- else DatabaseErrorFmt(SUnsupportedParameter,[Fieldtypenames[AParams[i].DataType]],self);
- end;
- s[length(s)] := ')';
- buf := AParams.ParseSQL(buf,false,psPostgreSQL);
- end;
- s := s + ' as ' + buf;
- res := pqexec(tr.PGConn,pchar(s));
- if (PQresultStatus(res) <> PGRES_COMMAND_OK) then
- begin
- pqclear(res);
- DatabaseError(SErrPrepareFailed + ' (PostgreSQL: ' + PQerrorMessage(tr.PGConn) + ')',self)
- end;
- FPrepared := True;
- end
- else
- statement := buf;
- end;
- end;
- procedure TPQConnection.UnPrepareStatement(cursor : TSQLCursor);
- begin
- with (cursor as TPQCursor) do if FPrepared then
- begin
- if not tr.ErrorOccured then
- begin
- res := pqexec(tr.PGConn,pchar('deallocate prepst'+nr));
- if (PQresultStatus(res) <> PGRES_COMMAND_OK) then
- begin
- pqclear(res);
- DatabaseError(SErrPrepareFailed + ' (PostgreSQL: ' + PQerrorMessage(tr.PGConn) + ')',self)
- end;
- pqclear(res);
- end;
- FPrepared := False;
- end;
- end;
- procedure TPQConnection.Execute(cursor: TSQLCursor;atransaction:tSQLtransaction;AParams : TParams);
- var ar : array of pchar;
- i : integer;
- s : string;
- begin
- with cursor as TPQCursor do
- begin
- if FStatementType in [stInsert,stUpdate,stDelete,stSelect] then
- begin
- if Assigned(AParams) and (AParams.count > 0) then
- begin
- setlength(ar,Aparams.count);
- for i := 0 to AParams.count -1 do if not AParams[i].IsNull then
- begin
- case AParams[i].DataType of
- ftdatetime : s := formatdatetime('YYYY-MM-DD',AParams[i].AsDateTime);
- ftdate : s := formatdatetime('YYYY-MM-DD',AParams[i].AsDateTime);
- else
- s := AParams[i].asstring;
- end; {case}
- GetMem(ar[i],length(s)+1);
- StrMove(PChar(ar[i]),Pchar(s),Length(S)+1);
- end
- else
- FreeAndNil(ar[i]);
- res := PQexecPrepared(tr.PGConn,pchar('prepst'+nr),Aparams.count,@Ar[0],nil,nil,1);
- for i := 0 to AParams.count -1 do
- FreeMem(ar[i]);
- end
- else
- res := PQexecPrepared(tr.PGConn,pchar('prepst'+nr),0,nil,nil,nil,1);
- end
- else
- begin
- tr := TPQTrans(aTransaction.Handle);
- s := statement;
- //Should be altered, just like in TSQLQuery.ApplyRecUpdate
- if assigned(AParams) then for i := 0 to AParams.count-1 do
- s := stringreplace(s,':'+AParams[i].Name,AParams[i].asstring,[rfReplaceAll,rfIgnoreCase]);
- res := pqexec(tr.PGConn,pchar(s));
- end;
- if not (PQresultStatus(res) in [PGRES_COMMAND_OK,PGRES_TUPLES_OK]) then
- begin
- s := PQerrorMessage(tr.PGConn);
- pqclear(res);
- tr.ErrorOccured := True;
- // Don't perform the rollback, only make it possible to do a rollback.
- // The other databases also don't do this.
- // atransaction.Rollback;
- DatabaseError(SErrExecuteFailed + ' (PostgreSQL: ' + s + ')',self);
- end;
- end;
- end;
- procedure TPQConnection.AddFieldDefs(cursor: TSQLCursor; FieldDefs : TfieldDefs);
- var
- i : integer;
- size : integer;
- st : string;
- fieldtype : tfieldtype;
- nFields : integer;
- begin
- with cursor as TPQCursor do
- begin
- nFields := PQnfields(Res);
- for i := 0 to nFields-1 do
- begin
- size := PQfsize(Res, i);
- fieldtype := TranslateFldType(PQftype(Res, i));
- if (fieldtype = ftstring) and (size = -1) then
- begin
- size := pqfmod(res,i)-4;
- if size = -5 then size := dsMaxStringSize;
- end
- else if fieldtype = ftdate then
- size := sizeof(double)
- else if fieldtype = ftblob then
- size := 0;
- TFieldDef.Create(FieldDefs, PQfname(Res, i), fieldtype,size, False, (i + 1));
- end;
- CurTuple := -1;
- end;
- end;
- function TPQConnection.GetHandle: pointer;
- begin
- Result := FSQLDatabaseHandle;
- end;
- function TPQConnection.Fetch(cursor : TSQLCursor) : boolean;
- var st : string;
- begin
- with cursor as TPQCursor do
- begin
- inc(CurTuple);
- Result := (PQntuples(res)>CurTuple);
- end;
- end;
- function TPQConnection.LoadField(cursor : TSQLCursor;FieldDef : TfieldDef;buffer : pointer) : boolean;
- type TNumericRecord = record
- Digits : SmallInt;
- Weight : SmallInt;
- Sign : SmallInt;
- Scale : Smallint;
- end;
- var
- x,i : integer;
- li : Longint;
- CurrBuff : pchar;
- tel : byte;
- dbl : pdouble;
- cur : currency;
- NumericRecord : ^TNumericRecord;
- s : string;
- begin
- with cursor as TPQCursor do
- begin
- for x := 0 to PQnfields(res)-1 do
- if PQfname(Res, x) = FieldDef.Name then break;
- if PQfname(Res, x) <> FieldDef.Name then
- DatabaseErrorFmt(SFieldNotFound,[FieldDef.Name],self);
- if pqgetisnull(res,CurTuple,x)=1 then
- result := false
- else
- begin
- i := PQfsize(res, x);
- CurrBuff := pqgetvalue(res,CurTuple,x);
- result := true;
- case FieldDef.DataType of
- ftInteger, ftSmallint, ftLargeInt,ftfloat :
- begin
- case i of // postgres returns big-endian numbers
- sizeof(int64) : pint64(buffer)^ := BEtoN(pint64(CurrBuff)^);
- sizeof(integer) : pinteger(buffer)^ := BEtoN(pinteger(CurrBuff)^);
- sizeof(smallint) : psmallint(buffer)^ := BEtoN(psmallint(CurrBuff)^);
- else
- for tel := 1 to i do
- pchar(Buffer)[tel-1] := CurrBuff[i-tel];
- end; {case}
- end;
- ftString :
- begin
- li := pqgetlength(res,curtuple,x);
- Move(CurrBuff^, Buffer^, li);
- pchar(Buffer + li)^ := #0;
- i := pqfmod(res,x)-3;
- end;
- ftBlob :
- begin
- li := pqgetlength(res,curtuple,x);
- setlength(s,li);
- Move(CurrBuff^, s[1], li);
- i := fBlobStrings.Add(S);
- Move(I, Buffer^, SizeOf(Integer));
- end;
- ftdate :
- begin
- dbl := pointer(buffer);
- dbl^ := BEtoN(plongint(CurrBuff)^) + 36526;
- i := sizeof(double);
- end;
- ftDateTime, fttime :
- begin
- pint64(buffer)^ := BEtoN(pint64(CurrBuff)^);
- dbl := pointer(buffer);
- if FIntegerDatetimes then dbl^ := pint64(buffer)^/1000000;
- dbl^ := (dbl^+3.1558464E+009)/86400; // postgres counts seconds elapsed since 1-1-2000
- // Now convert the mathematically-correct datetime to the
- // illogical windows/delphi/fpc TDateTime:
- if (dbl^ <= 0) and (frac(dbl^)<0) then
- dbl^ := trunc(dbl^)-2-frac(dbl^);
- end;
- ftBCD:
- begin
- NumericRecord := pointer(CurrBuff);
- NumericRecord^.Digits := BEtoN(NumericRecord^.Digits);
- NumericRecord^.Scale := BEtoN(NumericRecord^.Scale);
- NumericRecord^.Weight := BEtoN(NumericRecord^.Weight);
- inc(pointer(currbuff),sizeof(TNumericRecord));
- cur := 0;
- if (NumericRecord^.Digits = 0) and (NumericRecord^.Scale = 0) then // = NaN, which is not supported by Currency-type, so we return NULL
- result := false
- else
- begin
- for tel := 1 to NumericRecord^.Digits do
- begin
- cur := cur + beton(pword(currbuff)^) * intpower(10000,-(tel-1)+NumericRecord^.weight);
- inc(pointer(currbuff),2);
- end;
- if BEtoN(NumericRecord^.Sign) <> 0 then cur := -cur;
- Move(Cur, Buffer^, sizeof(currency));
- end;
- end;
- ftBoolean:
- pchar(buffer)[0] := CurrBuff[0]
- else
- result := false;
- end;
- end;
- end;
- end;
- procedure TPQConnection.UpdateIndexDefs(var IndexDefs : TIndexDefs;TableName : string);
- var qry : TSQLQuery;
- begin
- if not assigned(Transaction) then
- DatabaseError(SErrConnTransactionnSet);
- qry := tsqlquery.Create(nil);
- qry.transaction := Transaction;
- qry.database := Self;
- with qry do
- begin
- ReadOnly := True;
- sql.clear;
- sql.add('select '+
- 'ic.relname as indexname, '+
- 'tc.relname as tablename, '+
- 'ia.attname, '+
- 'i.indisprimary, '+
- 'i.indisunique '+
- 'from '+
- 'pg_attribute ta, '+
- 'pg_attribute ia, '+
- 'pg_class tc, '+
- 'pg_class ic, '+
- 'pg_index i '+
- 'where '+
- '(i.indrelid = tc.oid) and '+
- '(ta.attrelid = tc.oid) and '+
- '(ia.attrelid = i.indexrelid) and '+
- '(ic.oid = i.indexrelid) and '+
- '(ta.attnum = i.indkey[ia.attnum-1]) and '+
- '(upper(tc.relname)=''' + UpperCase(TableName) +''') '+
- 'order by '+
- 'ic.relname;');
- open;
- end;
- while not qry.eof do with IndexDefs.AddIndexDef do
- begin
- Name := trim(qry.fields[0].asstring);
- Fields := trim(qry.Fields[2].asstring);
- If qry.fields[3].asboolean then options := options + [ixPrimary];
- If qry.fields[4].asboolean then options := options + [ixUnique];
- qry.next;
- while (name = qry.fields[0].asstring) and (not qry.eof) do
- begin
- Fields := Fields + ';' + trim(qry.Fields[2].asstring);
- qry.next;
- end;
- end;
- qry.close;
- qry.free;
- end;
- function TPQConnection.GetSchemaInfoSQL(SchemaType: TSchemaType;
- SchemaObjectName, SchemaPattern: string): string;
- var s : string;
- begin
- case SchemaType of
- stTables : s := 'select '+
- 'relfilenode as recno, '+
- '''' + DatabaseName + ''' as catalog_name, '+
- ''''' as schema_name, '+
- 'relname as table_name, '+
- '0 as table_type '+
- 'from '+
- 'pg_class '+
- 'where '+
- '(relowner > 1) and relkind=''r''' +
- 'order by relname';
- stSysTables : s := 'select '+
- 'relfilenode as recno, '+
- '''' + DatabaseName + ''' as catalog_name, '+
- ''''' as schema_name, '+
- 'relname as table_name, '+
- '0 as table_type '+
- 'from '+
- 'pg_class '+
- 'where '+
- 'relkind=''r''' +
- 'order by relname';
- else
- DatabaseError(SMetadataUnavailable)
- end; {case}
- result := s;
- end;
- end.
|