| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 const Vector<String>& columnNames() const { return m_columns; } | 46 const Vector<String>& columnNames() const { return m_columns; } |
| 47 const Vector<SQLValue>& values() const { return m_result; } | 47 const Vector<SQLValue>& values() const { return m_result; } |
| 48 | 48 |
| 49 void addColumn(const String& name) { m_columns.append(name); } | 49 void addColumn(const String& name) { m_columns.append(name); } |
| 50 void addResult(const SQLValue& result) { m_result.append(result); } | 50 void addResult(const SQLValue& result) { m_result.append(result); } |
| 51 | 51 |
| 52 unsigned length() const; | 52 unsigned length() const; |
| 53 | 53 |
| 54 private: | 54 private: |
| 55 SQLResultSetRowList() | 55 SQLResultSetRowList() { } |
| 56 { | |
| 57 ScriptWrappable::init(this); | |
| 58 } | |
| 59 | 56 |
| 60 Vector<String> m_columns; | 57 Vector<String> m_columns; |
| 61 Vector<SQLValue> m_result; | 58 Vector<SQLValue> m_result; |
| 62 }; | 59 }; |
| 63 | 60 |
| 64 } // namespace blink | 61 } // namespace blink |
| 65 | 62 |
| 66 #endif // SQLResultSetRowList_h | 63 #endif // SQLResultSetRowList_h |
| OLD | NEW |