Update of /cvsroot/instantobjects/Source/Brokers/DBX
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26968/Brokers/DBX
Modified Files:
InstantDBX.pas
Log Message:
support for altering indexes in database evolution
Index: InstantDBX.pas
===================================================================
RCS file: /cvsroot/instantobjects/Source/Brokers/DBX/InstantDBX.pas,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** InstantDBX.pas 1 Jul 2005 23:29:22 -0000 1.7
--- InstantDBX.pas 15 Jul 2005 10:24:14 -0000 1.8
***************
*** 417,420 ****
--- 417,422 ----
else if CommandType = ctAddIndex then
Result := TInstantDBBuildAddIndexSQLCommand.Create(CommandType, Connector)
+ else if CommandType = ctAlterIndex then
+ Result := TInstantDBBuildAlterIndexSQLCommand.Create(CommandType, Connector)
else if CommandType = ctDropIndex then
Result := TInstantDBBuildDropIndexSQLCommand.Create(CommandType, Connector)
|