Changes between Version 5 and Version 6 of FDORfc52
- Timestamp:
- 08/08/10 16:01:51 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc52
v5 v6 61 61 Column value access by name is also possible using operator[]. 62 62 63 <code> 63 {{{ 64 64 void PrintFile(const wchar_t* path) 65 65 { … … 110 110 } 111 111 } 112 </code> 112 }}} 113 113 114 114 === Example 2: Bulk copy from one data source to another (e.g. SHP to SQLite conversion) === … … 120 120 target data store. 121 121 122 <code> 122 {{{ 123 123 void ConvertFDOToFDO(const wchar_t* src, const wchar_t* dst) 124 124 { … … 171 171 } 172 172 } 173 </code> 173 }}} 174 174 175 175 == Performance Implications ==