2002-10-04 14:42 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
This commit is contained in:
@@ -8,6 +8,10 @@
|
||||
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
|
||||
*/
|
||||
|
||||
2002-10-04 14:42 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
|
||||
* source/rdd/dbcmd.c
|
||||
! Bug fixed in COPY TO, APPEND FROM with aliased fields
|
||||
|
||||
2002-10-04 13:58 UTC+0300 Alexander Kresin <alex@belacy.belgorod.su>
|
||||
* source/rdd/dbfntx/dbfntx1.c
|
||||
! Few bugs fixed, related to OrdKeyNo() and OrdKeyCount()
|
||||
|
||||
@@ -3477,7 +3477,11 @@ static BOOL IsFieldIn( char * fieldName, PHB_ITEM pFields )
|
||||
for ( i=0; i<uiFields; i++ )
|
||||
{
|
||||
PHB_ITEM pField = pFields->item.asArray.value->pItems + i;
|
||||
ptr = (char *)pField->item.asString.value;
|
||||
ptr = strrchr( (char *)pField->item.asString.value,'>' );
|
||||
if( ptr && ptr > (char *)pField->item.asString.value && *(ptr-1)=='-' )
|
||||
ptr ++;
|
||||
else
|
||||
ptr = (char *)pField->item.asString.value;
|
||||
lresult = TRUE;
|
||||
for( j=0;*ptr;j++,ptr++ )
|
||||
if( *(fieldName+j) != toupper(*ptr) )
|
||||
|
||||
Reference in New Issue
Block a user