SpreadSheet.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. // Class to read and write to Excel and text delimited spreadsheet
  2. //
  3. // Created by Yap Chun Wei
  4. // December 2001
  5. //
  6. // Version 1.1
  7. // Updates: Fix bug in ReadRow() which prevent reading of single column spreadsheet
  8. // Modified by jingzhou xu
  9. #ifndef CSPREADSHEET_H
  10. #define CSPREADSHEET_H
  11. #include <odbcinst.h>
  12. #include <afxdb.h>
  13. class CSpreadSheet
  14. {
  15. public:
  16. CSpreadSheet(CString File, CString SheetOrSeparator, bool Backup = true); // Open spreadsheet for reading and writing
  17. ~CSpreadSheet(); // Perform some cleanup functions
  18. bool AddHeaders(CStringArray &FieldNames, bool replace = false); // Add header row to spreadsheet
  19. bool DeleteSheet(); // Clear text delimited file content
  20. bool DeleteSheet(CString SheetName); // Clear entire Excel spreadsheet content. The sheet itself is not deleted
  21. bool AddRow(CStringArray &RowValues, long row = 0, bool replace = false); // Insert or replace a row into spreadsheet. Default is add new row.
  22. bool AddCell(CString CellValue, CString column, long row = 0, bool Auto = true); // Replace or add a cell into Excel spreadsheet using header row or column alphabet. Default is add cell into new row. Set Auto to false if want to force column to be used as header name
  23. bool AddCell(CString CellValue, short column, long row = 0); // Replace or add a cell into spreadsheet using column number. Default is add cell into new row.
  24. bool ReplaceRows(CStringArray &NewRowValues, CStringArray &OldRowValues); // Search and replace rows in Excel spreadsheet
  25. bool ReadRow(CStringArray &RowValues, long row = 0); // Read a row from spreadsheet. Default is read the next row
  26. bool ReadColumn(CStringArray &ColumnValues, CString column, bool Auto = true); // Read a column from Excel spreadsheet using header row or column alphabet. Set Auto to false if want to force column to be used as header name
  27. bool ReadColumn(CStringArray &ColumnValues, short column); // Read a column from spreadsheet using column number
  28. bool ReadCell (CString &CellValue, CString column, long row = 0, bool Auto = true); // Read a cell from Excel spreadsheet using header row or column alphabet. Default is read the next cell in next row. Set Auto to false if want to force column to be used as header name
  29. bool ReadCell (CString &CellValue, short column, long row = 0); // Read a cell from spreadsheet using column number. Default is read the next cell in next row.
  30. void BeginTransaction(); // Begin transaction
  31. bool Commit(); // Save changes to spreadsheet
  32. bool RollBack(); // Undo changes to spreadsheet
  33. bool Convert(CString SheetOrSeparator);
  34. inline void GetFieldNames (CStringArray &FieldNames) {FieldNames.RemoveAll(); FieldNames.Copy(m_aFieldNames);} // Get the header row from spreadsheet
  35. inline long GetTotalRows() {return m_dTotalRows;} // Get total number of rows in spreadsheet
  36. inline short GetTotalColumns() {return m_dTotalColumns;} // Get total number of columns in spreadsheet
  37. inline long GetCurrentRow() {return m_dCurrentRow;} // Get the currently selected row in spreadsheet
  38. inline bool GetBackupStatus() {return m_bBackup;} // Get status of backup. True if backup is successful, False if spreadsheet is not backup
  39. inline bool GetTransactionStatus() {return m_bTransaction;} // Get status of Transaction. True if Transaction is started, False if Transaction is not started or has error in starting
  40. inline CString GetLastError() {return m_sLastError;} // Get last error message
  41. private:
  42. bool Open(); // Open a text delimited file for reading or writing
  43. void GetExcelDriver(); // Get the name of the Excel-ODBC driver
  44. short CalculateColumnNumber(CString column, bool Auto); // Convert Excel column in alphabet into column number
  45. bool m_bAppend; // Internal flag to denote newly created spreadsheet or previously created spreadsheet
  46. bool m_bBackup; // Internal flag to denote status of Backup
  47. bool m_bExcel; // Internal flag to denote whether file is Excel spreadsheet or text delimited spreadsheet
  48. bool m_bTransaction; // Internal flag to denote status of Transaction
  49. long m_dCurrentRow; // Index of current row, starting from 1
  50. long m_dTotalRows; // Total number of rows in spreadsheet
  51. short m_dTotalColumns; // Total number of columns in Excel spreadsheet. Largest number of columns in text delimited spreadsheet
  52. CString m_sSql; // SQL statement to open Excel spreadsheet for reading
  53. CString m_sDsn; // DSN string to open Excel spreadsheet for reading and writing
  54. CString m_stempSql; // Temporary string for SQL statements or for use by functions
  55. CString m_stempString; // Temporary string for use by functions
  56. CString m_sSheetName; // Sheet name of Excel spreadsheet
  57. CString m_sExcelDriver; // Name of Excel Driver
  58. CString m_sFile; // Spreadsheet file name
  59. CString m_sSeparator; // Separator in text delimited spreadsheet
  60. CString m_sLastError; // Last error message
  61. CStringArray m_atempArray; // Temporary array for use by functions
  62. CStringArray m_aFieldNames; // Header row in spreadsheet
  63. CStringArray m_aRows; // Content of all the rows in spreadsheet
  64. CDatabase *m_Database; // Database variable for Excel spreadsheet
  65. CRecordset *m_rSheet; // Recordset for Excel spreadsheet
  66. };
  67. #endif