summaryrefslogtreecommitdiffstats
path: root/doc/html/qsqlfieldinfo.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/qsqlfieldinfo.html')
-rw-r--r--doc/html/qsqlfieldinfo.html36
1 files changed, 18 insertions, 18 deletions
diff --git a/doc/html/qsqlfieldinfo.html b/doc/html/qsqlfieldinfo.html
index 72e3f93f4..19e834a56 100644
--- a/doc/html/qsqlfieldinfo.html
+++ b/doc/html/qsqlfieldinfo.html
@@ -33,7 +33,7 @@ body { background: #ffffff; color: black; }
<p>The TQSqlFieldInfo class stores meta data associated with a SQL field.
<a href="#details">More...</a>
-<p><tt>#include &lt;<a href="qsqlfield-h.html">qsqlfield.h</a>&gt;</tt>
+<p><tt>#include &lt;<a href="qsqlfield-h.html">ntqsqlfield.h</a>&gt;</tt>
<p><a href="qsqlfieldinfo-members.html">List of all member functions.</a>
<h2>Public Members</h2>
<ul>
@@ -65,19 +65,19 @@ The TQSqlFieldInfo class stores meta data associated with a SQL field.
<p>
<p> TQSqlFieldInfo objects only store meta data; field values are
-stored in <a href="qsqlfield.html">TQSqlField</a> objects.
+stored in <a href="ntqsqlfield.html">TQSqlField</a> objects.
<p> All values must be set in the constructor, and may be retrieved
using <a href="#isRequired">isRequired</a>(), <a href="#type">type</a>(), <a href="#length">length</a>(), <a href="#precision">precision</a>(), <a href="#defaultValue">defaultValue</a>(),
<a href="#name">name</a>(), <a href="#isGenerated">isGenerated</a>() and <a href="#typeID">typeID</a>().
<p>See also <a href="database.html">Database Classes</a>.
<hr><h2>Member Function Documentation</h2>
-<h3 class=fn><a name="TQSqlFieldInfo"></a>TQSqlFieldInfo::TQSqlFieldInfo ( const&nbsp;<a href="qstring.html">TQString</a>&nbsp;&amp;&nbsp;name = TQString::null, <a href="qvariant.html#Type-enum">TQVariant::Type</a>&nbsp;typ = TQVariant::Invalid, int&nbsp;required = -1, int&nbsp;len = -1, int&nbsp;prec = -1, const&nbsp;<a href="qvariant.html">TQVariant</a>&nbsp;&amp;&nbsp;defValue = TQVariant ( ), int&nbsp;typeID = 0, bool&nbsp;generated = TRUE, bool&nbsp;trim = FALSE, bool&nbsp;calculated = FALSE )
+<h3 class=fn><a name="TQSqlFieldInfo"></a>TQSqlFieldInfo::TQSqlFieldInfo ( const&nbsp;<a href="ntqstring.html">TQString</a>&nbsp;&amp;&nbsp;name = TQString::null, <a href="ntqvariant.html#Type-enum">TQVariant::Type</a>&nbsp;typ = TQVariant::Invalid, int&nbsp;required = -1, int&nbsp;len = -1, int&nbsp;prec = -1, const&nbsp;<a href="ntqvariant.html">TQVariant</a>&nbsp;&amp;&nbsp;defValue = TQVariant ( ), int&nbsp;typeID = 0, bool&nbsp;generated = TRUE, bool&nbsp;trim = FALSE, bool&nbsp;calculated = FALSE )
</h3>
Constructs a TQSqlFieldInfo with the following parameters:
<center><table cellpadding="4" cellspacing="2" border="0">
<tr bgcolor="#f0f0f0"> <td valign="top"><em>name</em> <td valign="top">the name of the field.
-<tr bgcolor="#d0d0d0"> <td valign="top"><em>typ</em> <td valign="top">the field's type in a <a href="qvariant.html">TQVariant</a>.
+<tr bgcolor="#d0d0d0"> <td valign="top"><em>typ</em> <td valign="top">the field's type in a <a href="ntqvariant.html">TQVariant</a>.
<tr bgcolor="#f0f0f0"> <td valign="top"><em>required</em> <td valign="top">greater than 0 if the field is required, 0
if its value can be NULL and less than 0 if it cannot be
determined whether the field is required or not.
@@ -93,33 +93,33 @@ no default value or it cannot be determined.
<tr bgcolor="#f0f0f0"> <td valign="top"><em>typeID</em> <td valign="top">the internal typeID of the database system
(only useful for low-level programming). 0 if unknown.
<tr bgcolor="#d0d0d0"> <td valign="top"><em>generated</em> <td valign="top">TRUE indicates that this field should be
-included in auto-generated SQL statments, e.g. in <a href="qsqlcursor.html">TQSqlCursor</a>.
+included in auto-generated SQL statments, e.g. in <a href="ntqsqlcursor.html">TQSqlCursor</a>.
<tr bgcolor="#f0f0f0"> <td valign="top"><em>trim</em> <td valign="top">TRUE indicates that widgets should remove
trailing whitespace from character fields. This does not affect
the field value but only its representation inside widgets.
<tr bgcolor="#d0d0d0"> <td valign="top"><em>calculated</em> <td valign="top">TRUE indicates that the value of this
field is calculated. The value of calculated fields can by
modified by subclassing TQSqlCursor and overriding
-<a href="qsqlcursor.html#calculateField">TQSqlCursor::calculateField</a>().
+<a href="ntqsqlcursor.html#calculateField">TQSqlCursor::calculateField</a>().
</table></center>
<h3 class=fn><a name="TQSqlFieldInfo-2"></a>TQSqlFieldInfo::TQSqlFieldInfo ( const&nbsp;<a href="qsqlfieldinfo.html">TQSqlFieldInfo</a>&nbsp;&amp;&nbsp;other )
</h3>
Constructs a copy of <em>other</em>.
-<h3 class=fn><a name="TQSqlFieldInfo-3"></a>TQSqlFieldInfo::TQSqlFieldInfo ( const&nbsp;<a href="qsqlfield.html">TQSqlField</a>&nbsp;&amp;&nbsp;other, bool&nbsp;generated = TRUE )
+<h3 class=fn><a name="TQSqlFieldInfo-3"></a>TQSqlFieldInfo::TQSqlFieldInfo ( const&nbsp;<a href="ntqsqlfield.html">TQSqlField</a>&nbsp;&amp;&nbsp;other, bool&nbsp;generated = TRUE )
</h3>
Creates a TQSqlFieldInfo object with the type and the name of the
-<a href="qsqlfield.html">TQSqlField</a> <em>other</em>. If <em>generated</em> is TRUE this field will be
-included in auto-generated SQL statments, e.g. in <a href="qsqlcursor.html">TQSqlCursor</a>.
+<a href="ntqsqlfield.html">TQSqlField</a> <em>other</em>. If <em>generated</em> is TRUE this field will be
+included in auto-generated SQL statments, e.g. in <a href="ntqsqlcursor.html">TQSqlCursor</a>.
<h3 class=fn><a name="~TQSqlFieldInfo"></a>TQSqlFieldInfo::~TQSqlFieldInfo ()<tt> [virtual]</tt>
</h3>
Destroys the object and frees any allocated resources.
-<h3 class=fn><a href="qvariant.html">TQVariant</a> <a name="defaultValue"></a>TQSqlFieldInfo::defaultValue () const
+<h3 class=fn><a href="ntqvariant.html">TQVariant</a> <a name="defaultValue"></a>TQSqlFieldInfo::defaultValue () const
</h3>
-Returns the field's default value or an empty <a href="qvariant.html">TQVariant</a> if the
+Returns the field's default value or an empty <a href="ntqvariant.html">TQVariant</a> if the
field has no default value or the value couldn't be determined.
The default value is the value inserted in the database when it
is not explicitly specified by the user.
@@ -132,7 +132,7 @@ Returns TRUE if the field is calculated; otherwise returns FALSE.
<h3 class=fn>bool <a name="isGenerated"></a>TQSqlFieldInfo::isGenerated () const
</h3>
Returns TRUE if the field should be included in auto-generated
-SQL statments, e.g. in <a href="qsqlcursor.html">TQSqlCursor</a>; otherwise returns FALSE.
+SQL statments, e.g. in <a href="ntqsqlcursor.html">TQSqlCursor</a>; otherwise returns FALSE.
<p> <p>See also <a href="#setGenerated">setGenerated</a>().
<h3 class=fn>int <a name="isRequired"></a>TQSqlFieldInfo::isRequired () const
@@ -156,7 +156,7 @@ non-character fields some database systems return the number of
bytes needed or the number of digits allowed. If the length cannot
be determined -1 is returned.
-<h3 class=fn><a href="qstring.html">TQString</a> <a name="name"></a>TQSqlFieldInfo::name () const
+<h3 class=fn><a href="ntqstring.html">TQString</a> <a name="name"></a>TQSqlFieldInfo::name () const
</h3>
Returns the name of the field in the SQL table.
@@ -181,13 +181,13 @@ or it cannot be determined.
</h3>
<em>calc</em> set to TRUE indicates that this field is a calculated
field. The value of calculated fields can by modified by subclassing
-<a href="qsqlcursor.html">TQSqlCursor</a> and overriding <a href="qsqlcursor.html#calculateField">TQSqlCursor::calculateField</a>().
+<a href="ntqsqlcursor.html">TQSqlCursor</a> and overriding <a href="ntqsqlcursor.html#calculateField">TQSqlCursor::calculateField</a>().
<p> <p>See also <a href="#isCalculated">isCalculated</a>().
<h3 class=fn>void <a name="setGenerated"></a>TQSqlFieldInfo::setGenerated ( bool&nbsp;gen )<tt> [virtual]</tt>
</h3>
<em>gen</em> set to FALSE indicates that this field should not appear
-in auto-generated SQL statements (for example in <a href="qsqlcursor.html">TQSqlCursor</a>).
+in auto-generated SQL statements (for example in <a href="ntqsqlcursor.html">TQSqlCursor</a>).
<p> <p>See also <a href="#isGenerated">isGenerated</a>().
<h3 class=fn>void <a name="setTrim"></a>TQSqlFieldInfo::setTrim ( bool&nbsp;trim )<tt> [virtual]</tt>
@@ -197,12 +197,12 @@ character fields. This does not affect the field value but only
its representation inside widgets.
<p> <p>See also <a href="#isTrim">isTrim</a>().
-<h3 class=fn><a href="qsqlfield.html">TQSqlField</a> <a name="toField"></a>TQSqlFieldInfo::toField () const
+<h3 class=fn><a href="ntqsqlfield.html">TQSqlField</a> <a name="toField"></a>TQSqlFieldInfo::toField () const
</h3>
-Returns an empty <a href="qsqlfield.html">TQSqlField</a> based on the information in this
+Returns an empty <a href="ntqsqlfield.html">TQSqlField</a> based on the information in this
TQSqlFieldInfo.
-<h3 class=fn><a href="qvariant.html#Type-enum">TQVariant::Type</a> <a name="type"></a>TQSqlFieldInfo::type () const
+<h3 class=fn><a href="ntqvariant.html#Type-enum">TQVariant::Type</a> <a name="type"></a>TQSqlFieldInfo::type () const
</h3>
Returns the field's type or TQVariant::Invalid if the type is
unknown.