~ubuntu-branches/ubuntu/saucy/sope/saucy

« back to all changes in this revision

Viewing changes to sope-gdl1/PostgreSQL/PGResultSet.m

  • Committer: Package Import Robot
  • Author(s): Jeroen Dekkers
  • Date: 2012-06-10 22:05:37 UTC
  • Revision ID: package-import@ubuntu.com-20120610220537-50vcuwp4uthj88dk
Tags: 1.3.15-3
* 0009-GNUstep-1.24-fix.patch:
  - Fix to cope with changes in GNUstep 1.24.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
}
99
99
 
100
100
- (int)indexOfFieldNamed:(NSString *)_name {
101
 
#if LIB_FOUNDATION_LIBRARY
102
 
  // TBD: might be wrong even in this case?
103
 
  return PQfnumber(self->results, [_name cString]);
104
 
#else
105
101
  return PQfnumber(self->results, [_name UTF8String]);
106
 
#endif
107
102
}
108
103
 
109
104
- (int)fieldSizeAtIndex:(unsigned int)_idx {