Lines Matching refs:code
38 That is, if an <code>SQLException</code> is raised by
41 will be used as <code>ErrorCode</code>.</p>
43 <p>This allows to determine specific error conditions in your client code, and
46 <p>Note that before you examine the <code>ErrorCode</code> member of a caught
47 <code>SQLException</code>, you need to make sure that the exception
49 whether the error message (<code>Exception::Message</code>) starts with the
50 vendor string <code>[OOoBase]</code>.</p>
85 <p>Imagine you have a client-side query <code>SELECT * FROM table</code>, which is
87 as <code>SELECT * FROM query1</code>. Now if you try to change the statement of
88 <type>query1</type> to <code>SELECT * FROM query2</code>, this is prohibited, because
112 … <code>SELECT</code> statements, where quote identifiers would render the statement invalid.</p>
121 <p>In databases which support query names to appear in <code>SELECT</code>
146 <p>For instance, this error code is used when you try to access the address book
157 /** used to indicate that a <code>SELECT</code> operation on a table needs a filter.
159 <p>Some database drivers are not able to <code>SELECT</code> from a table if the
160 statement does not contain a <code>WHERE</code> clause. In this case, a statement
161 like <code>SELECT * FROM "table"</cdeo> with fail with the error code
162 <code>DATA_CANNOT_SELECT_UNFILTERED</code>.</p>