Update of /cvsroot/instantobjects/Source/Brokers/ADS
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21900/Brokers/ADS
Modified Files:
InstantADS.pas InstantADSConnectionDefEdit.pas
Added Files:
InstantADSReg.pas
Log Message:
Updated by femfad - Compatibility with D5 Pro.
Index: InstantADS.pas
===================================================================
RCS file: /cvsroot/instantobjects/Source/Brokers/ADS/InstantADS.pas,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** InstantADS.pas 16 Sep 2004 11:30:01 -0000 1.3
--- InstantADS.pas 17 Feb 2005 04:19:48 -0000 1.4
***************
*** 296,300 ****
const
FieldTypes: array[TInstantDataType] of TFieldType =
! (ftInteger, ftFloat, ftBoolean, ftString, ftMemo, ftDateTime, ftBlob);
var
I: Integer;
--- 296,300 ----
const
FieldTypes: array[TInstantDataType] of TFieldType =
! (ftInteger, ftFloat, ftBCD, ftBoolean, ftString, ftMemo, ftDateTime, ftBlob);
var
I: Integer;
--- NEW FILE: InstantADSReg.pas ---
(*
* InstantObjects
* ADS Support
*)
(* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is: Seleqt InstantObjects
*
* The Initial Developer of the Original Code is: Seleqt
*
* Portions created by the Initial Developer are Copyright (C) 2001-2003
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* ***** END LICENSE BLOCK ***** *)
unit InstantADSReg;
{$IFNDEF VER130}
{$WARN SYMBOL_PLATFORM OFF}
{$ENDIF}
interface
procedure Register;
implementation
uses
Classes, InstantADS;
procedure Register;
begin
RegisterComponents('InstantObjects', [TInstantADSConnector]);
end;
end.
Index: InstantADSConnectionDefEdit.pas
===================================================================
RCS file: /cvsroot/instantobjects/Source/Brokers/ADS/InstantADSConnectionDefEdit.pas,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** InstantADSConnectionDefEdit.pas 29 Jul 2004 20:43:12 -0000 1.2
--- InstantADSConnectionDefEdit.pas 17 Feb 2005 04:19:49 -0000 1.3
***************
*** 73,77 ****
uses
! SysUtils, FileCtrl, Dialogs, IniFiles;
const
--- 73,77 ----
uses
! SysUtils, FileCtrl, Dialogs, IniFiles, InstantPersistence, InstantClasses;
const
|