]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/recrdset.tex
Added shaped sample copying
[wxWidgets.git] / docs / latex / wx / recrdset.tex
index 568fd85a24a7ec134e294963c4c5fc138b6ff6d9..7fedfe70acf4565c2eda1559c800c92a7d091978 100644 (file)
@@ -4,6 +4,9 @@ Each wxRecordSet represents an ODBC database query. You can make multiple querie
 at a time by using multiple wxRecordSets with a wxDatabase or you can make
 your queries in sequential order using the same wxRecordSet.
 
+Note: this class is considered obsolete, replaced by the Remstar 
+wxDB/wxDbTable classes
+
 \wxheading{Derived from}
 
 \helpref{wxObject}{wxobject}
@@ -267,7 +270,7 @@ obtained from the ODBC manager.}
 
 Copies the current data of the column at position {\it col} into the buffer
 \rtfsp{\it dataPtr}. To be sure to get the right type of data, the user has to pass the
-correct data type. The function returns FALSE if {\it col} does not
+correct data type. The function returns false if {\it col} does not
 exist or the wrong data type was given.
 
 \func{bool}{GetFieldData}{\param{const wxString\& }{name}, \param{int}{ dataType}, \param{void *}{dataPtr}}
@@ -453,14 +456,14 @@ has the number 0.
 
 \func{bool}{IsBOF}{\void}
 
-Returns TRUE if the user tried to move the cursor before the first record
+Returns true if the user tried to move the cursor before the first record
 in the set.
 
 \membersection{wxRecordSet::IsFieldDirty}
 
 \func{bool}{IsFieldDirty}{\param{int}{ field}}
 
-Returns TRUE if the given field has been changed but not saved yet.
+Returns true if the given field has been changed but not saved yet.
 
 \func{bool}{IsFieldDirty}{\param{const wxString\& }{name}}
 
@@ -470,7 +473,7 @@ Same as above, but uses the column name as the identifier.
 
 \func{bool}{IsFieldNull}{\param{int}{ field}}
 
-Returns TRUE if the given field has no data.
+Returns true if the given field has no data.
 
 \func{bool}{IsFieldNull}{\param{const wxString\& }{ name}}
 
@@ -480,7 +483,7 @@ Same as above, but uses the column name as the identifier.
 
 \func{bool}{IsColNullable}{\param{int}{ col}}
 
-Returns TRUE if the given column may contain no data.
+Returns true if the given column may contain no data.
 
 \func{bool}{IsColNullable}{\param{const wxString\& }{name}}
 
@@ -490,7 +493,7 @@ Same as above, but uses the column name as the identifier.
 
 \func{bool}{IsEOF}{\void}
 
-Returns TRUE if the user tried to move the cursor behind the last record
+Returns true if the user tried to move the cursor behind the last record
 in the set.
 
 \membersection{wxRecordSet::IsDeleted}
@@ -503,7 +506,7 @@ Not implemented.
 
 \func{bool}{IsOpen}{\void}
 
-Returns TRUE if the parent database is open.
+Returns true if the parent database is open.
 
 \membersection{wxRecordSet::Move}
 
@@ -556,11 +559,11 @@ Re-executes the last query. Not implemented.
 
 \membersection{wxRecordSet::SetFieldDirty}
 
-\func{void}{SetFieldDirty}{\param{int}{ field}, \param{bool}{ dirty = TRUE}}
+\func{void}{SetFieldDirty}{\param{int}{ field}, \param{bool}{ dirty = true}}
 
 Sets the dirty tag of the field field. Not implemented.
 
-\func{void}{SetFieldDirty}{\param{const wxString\& }{name}, \param{bool}{ dirty = TRUE}}
+\func{void}{SetFieldDirty}{\param{const wxString\& }{name}, \param{bool}{ dirty = true}}
 
 Same as above, but uses the column name as the identifier.
 
@@ -572,7 +575,7 @@ Not implemented.
 
 \membersection{wxRecordSet::SetFieldNull}
 
-\func{void}{SetFieldNull}{\param{void *}{p}, \param{bool }{isNull = TRUE}}
+\func{void}{SetFieldNull}{\param{void *}{p}, \param{bool }{isNull = true}}
 
 Not implemented.