[Mysql-cocoa-commits] CVS: Documentation/website/SMySQL_doc MCPConnection+MCPFastQueries.html,1.2,1.
Brought to you by:
sergecohen
From: Serge C. <ser...@us...> - 2004-08-09 16:08:01
|
Update of /cvsroot/mysql-cocoa/Documentation/website/SMySQL_doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28494/website/SMySQL_doc Modified Files: MCPConnection+MCPFastQueries.html MCPConnection.html MCPConnectionWinCont.html MCPDocument.html MCPResult+MCPResultPlus.html MCPResult.html NSObject+MCPNSNullTest.html Log Message: Updated the website to include the release of version 2.3.0 and 2.3.1. Updated also the API documentation. 2004-08-09; Serge Cohen. Index: MCPConnection+MCPFastQueries.html =================================================================== RCS file: /cvsroot/mysql-cocoa/Documentation/website/SMySQL_doc/MCPConnection+MCPFastQueries.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MCPConnection+MCPFastQueries.html 4 Mar 2004 22:19:12 -0000 1.2 --- MCPConnection+MCPFastQueries.html 9 Aug 2004 16:07:49 -0000 1.3 *************** *** 128,132 **** </CODE><P> Send the query <I>aQuery</I> to the server and retrieve the row <B>id</B> if the table have a autoincrement column. ! Returns 0 if no have been inserted <P><HR WIDTH=25% ALIGN=LEFT> --- 128,132 ---- </CODE><P> Send the query <I>aQuery</I> to the server and retrieve the row <B>id</B> if the table have a autoincrement column. ! Returns 0 if nothing have been inserted. <P><HR WIDTH=25% ALIGN=LEFT> *************** *** 144,148 **** <P><HR> ! Version 1.1 Copyright ©2003 by Serge Cohen. All Rights Reserved. Thu Mar 04 22:45:46 2004 <P> </BODY></HTML> --- 144,148 ---- <P><HR> ! Version 1.1 Copyright ©2003 by Serge Cohen. All Rights Reserved. Mon Aug 09 09:26:31 2004 <P> </BODY></HTML> Index: MCPConnection.html =================================================================== RCS file: /cvsroot/mysql-cocoa/Documentation/website/SMySQL_doc/MCPConnection.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MCPConnection.html 4 Mar 2004 22:19:12 -0000 1.2 --- MCPConnection.html 9 Aug 2004 16:07:49 -0000 1.3 *************** *** 24,28 **** <H2>Class Description</H2> <CODE> $Id$ </CODE> ! <CODE> $Name$ </CODE><P> This class is used to keep a connection with a MySQL server, it correspond to the MYSQL structure of the C API, or the database handle of the PERL DBI/DBD interface.<P> --- 24,28 ---- <H2>Class Description</H2> <CODE> $Id$ </CODE> ! <CODE> $Author$ </CODE><P> This class is used to keep a connection with a MySQL server, it correspond to the MYSQL structure of the C API, or the database handle of the PERL DBI/DBD interface.<P> *************** *** 36,44 **** MCPResult *theRes;<BR> <BR> ! theConnec = [theConnec initToHost::albert.com withLogin:@"toto" password:@"albert" port:0]; <BR> [theConnec selectDB:@"db1"]; <BR> theRes = [theConnec queryString:@"select * from table1"]; <BR> ... <BR> ! </CODE> --- 36,47 ---- MCPResult *theRes;<BR> <BR> ! theConnec = [theConnec initToHost:@"albert.com" withLogin:@"toto" password:@"albert" usingPort:0]; <BR> [theConnec selectDB:@"db1"]; <BR> theRes = [theConnec queryString:@"select * from table1"]; <BR> ... <BR> ! </CODE><P> ! ! <B>NOTE</B> Failing to properly release your MCPConnection(s) object might cause a MySQL crash!!! (recovered if the ! server was started using mysqld_safe). *************** *** 168,171 **** --- 171,176 ---- <DD> <A HREF="#- prepareString:">- prepareString:</A></DD> + <DD> <A HREF="#- quoteObject:">- quoteObject:</A></DD> + <DD> <A HREF="#- queryString:">- queryString:</A></DD> *************** *** 290,294 **** <CODE>+ (void)<B>initialize</B> </CODE><P> ! Initialize the class version to 2.0.0 --- 295,299 ---- <CODE>+ (void)<B>initialize</B> </CODE><P> ! Initialize the class version to 2.3.1 *************** *** 528,531 **** --- 533,548 ---- <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- quoteObject:"></A><H3><A NAME="//apple_ref/occ/instm/MCPConnection/quoteObject:">quoteObject:</A></H3><P> + <CODE>- (NSString *)<B>quoteObject:</B>(id)<EM>theObject</EM> + + </CODE><P> + Use the class of the <I>theObject</I> to know how it should be prepared for usage with the database. + If <I>theObject</I> is a string, this method will put single quotes to both its side and escape any necessary + character using prepareString: method. If <I>theObject</I> is NSData, the prepareBinaryData: method will be + used instead. + For NSNumber object, the number is just quoted, for calendar dates, the calendar date is formatted in + the preferred format for the database. + + <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- selectDB:"></A><H3><A NAME="//apple_ref/occ/instm/MCPConnection/selectDB:">selectDB:</A></H3><P> <CODE>- (BOOL)<B>selectDB:</B>(NSString *)<EM>dbName</EM> *************** *** 590,594 **** <P><HR> ! Version 1.2 Copyright ©2003 by Serge Cohen. All Rights Reserved. Thu Mar 04 22:45:46 2004 <P> </BODY></HTML> --- 607,611 ---- <P><HR> ! Version 1.3 Copyright ©2004 by Serge Cohen. All Rights Reserved. Mon Aug 09 09:26:32 2004 <P> </BODY></HTML> Index: MCPConnectionWinCont.html =================================================================== RCS file: /cvsroot/mysql-cocoa/Documentation/website/SMySQL_doc/MCPConnectionWinCont.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MCPConnectionWinCont.html 4 Mar 2004 22:19:12 -0000 1.1 --- MCPConnectionWinCont.html 9 Aug 2004 16:07:49 -0000 1.2 *************** *** 53,56 **** --- 53,57 ---- <CODE>IBOutlet NSPanel *<B>mPasswordSheet</B>;</CODE><BR> <CODE>IBOutlet NSTextField *<B>mPasswordField</B>;</CODE><BR> + <CODE>IBOutlet NSButton *<B>mCreateButton</B>;</CODE><BR> <P><TABLE> *************** *** 67,70 **** --- 68,73 ---- <TR><TD>mPasswordField</TD><TD>No description.</TD></TR> + <TR><TD>mCreateButton</TD><TD>No description.</TD></TR> + </TABLE> </blockquote> *************** *** 93,96 **** --- 96,101 ---- <DD> <A HREF="#- doCancel:">- doCancel:</A></DD> + <DD> <A HREF="#- doCreate:">- doCreate:</A></DD> + <DD> <A HREF="#- modifyInstance:">- modifyInstance:</A></DD> *************** *** 123,126 **** --- 128,140 ---- </DL> + + Getting the button for creating a DB. + + <DL><DT></DT> + + <DD> <A HREF="#- getCreateButton">- getCreateButton</A></DD> + + </DL> + </blockquote> *************** *** 161,164 **** --- 175,185 ---- <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- doCreate:"></A><H3><A NAME="//apple_ref/occ/instm/MCPConnectionWinCont/doCreate:">doCreate:</A></H3><P> + <CODE>- (IBAction)<B>doCreate:</B>(id)<EM>sender</EM> + + </CODE><P> + No method description. + + <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- doGo:"></A><H3><A NAME="//apple_ref/occ/instm/MCPConnectionWinCont/doGo:">doGo:</A></H3><P> <CODE>- (IBAction)<B>doGo:</B>(id)<EM>sender</EM> *************** *** 168,171 **** --- 189,198 ---- <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- getCreateButton"></A><H3><A NAME="//apple_ref/occ/instm/MCPConnectionWinCont/getCreateButton">getCreateButton</A></H3><P> + <CODE>- (NSButton*)<B>getCreateButton</B> + </CODE><P> + No method description. + + <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- init"></A><H3><A NAME="//apple_ref/occ/instm/MCPConnectionWinCont/init">init</A></H3><P> <CODE>- (id)<B>init</B> *************** *** 198,202 **** <P><HR> ! Version 1.1 Copyright ©2004 by Serge Cohen. All Rights Reserved. Thu Mar 04 22:45:46 2004 <P> </BODY></HTML> --- 225,229 ---- <P><HR> ! Version 1.1 Copyright ©2004 by Serge Cohen. All Rights Reserved. Mon Aug 09 09:26:32 2004 <P> </BODY></HTML> Index: MCPDocument.html =================================================================== RCS file: /cvsroot/mysql-cocoa/Documentation/website/SMySQL_doc/MCPDocument.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MCPDocument.html 4 Mar 2004 22:19:12 -0000 1.1 --- MCPDocument.html 9 Aug 2004 16:07:49 -0000 1.2 *************** *** 51,54 **** --- 51,56 ---- <CODE>NSWindowController *<B>MCPMainWinCont</B>;</CODE><BR> <CODE>Class <B>MCPConnectedWinCont</B>;</CODE><BR> + <CODE>NSString *<B>MCPModelName</B>;</CODE><BR> + <CODE>BOOL <B>MCPWillCreateNewDB</B>;</CODE><BR> <P><TABLE> *************** *** 65,68 **** --- 67,74 ---- <TR><TD>MCPConnectedWinCont</TD><TD>Window controller used once the connection is established (As a class).</TD></TR> + <TR><TD>MCPModelName</TD><TD>No description.</TD></TR> + + <TR><TD>MCPWillCreateNewDB</TD><TD>No description.</TD></TR> + </TABLE> </blockquote> *************** *** 104,107 **** --- 110,115 ---- <DD> <A HREF="#- MCPinsertRow:">- MCPinsertRow:</A></DD> + <DD> <A HREF="#- MCPgetConnection">- MCPgetConnection</A></DD> + </DL> *************** *** 160,163 **** --- 168,195 ---- + Accessors to the DB creation instances. + + <DL><DT></DT> + + <DD> <A HREF="#- setMCPModelName:">- setMCPModelName:</A></DD> + + <DD> <A HREF="#- setMCPWillCreateNewDB:">- setMCPWillCreateNewDB:</A></DD> + + <DD> <A HREF="#- MCPModelName">- MCPModelName</A></DD> + + <DD> <A HREF="#- MCPWillCreateNewDB">- MCPWillCreateNewDB</A></DD> + + </DL> + + + Practical creation of the database, from a model file. + + <DL><DT></DT> + + <DD> <A HREF="#- createModelDB">- createModelDB</A></DD> + + </DL> + + Overrides of NSDocument methods. *************** *** 179,183 **** <DL><DT></DT> ! <DD> <A HREF="#- MCPpasswordSheetDidEnd:returnCode:contextInfo:">- MCPpasswordSheetDidEnd:returnCode:contextInfo:</A></DD> </DL> --- 211,215 ---- <DL><DT></DT> ! <DD> <A HREF="#- MCPPasswordSheetDidEnd:returnCode:contextInfo:">- MCPPasswordSheetDidEnd:returnCode:contextInfo:</A></DD> </DL> *************** *** 249,252 **** --- 281,290 ---- <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- MCPModelName"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/MCPModelName">MCPModelName</A></H3><P> + <CODE>- (NSString *)<B>MCPModelName</B> + </CODE><P> + No method description. + + <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- MCPPassNeeded"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/MCPPassNeeded">MCPPassNeeded</A></H3><P> <CODE>- (BOOL)<B>MCPPassNeeded</B> *************** *** 255,258 **** --- 293,304 ---- <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- MCPPasswordSheetDidEnd:returnCode:contextInfo:"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/MCPPasswordSheetDidEnd:returnCode:contextInfo:">MCPPasswordSheetDidEnd:returnCode:contextInfo:</A></H3><P> + <CODE>- (void)<B>MCPPasswordSheetDidEnd:</B>(NSWindow *)<EM>sheet</EM> <B>returnCode:</B>(int)<EM>returnCode</EM> <B>contextInfo:</B>(void *)<EM>contextInfo</EM> + + </CODE><P> + Method called once the user enterred the password and click Ok (or press return) + Try to make a connection (depending of the button clicked), if password is refused, go back to ask connection information. + + <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- MCPPort"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/MCPPort">MCPPort</A></H3><P> <CODE>- (unsigned int)<B>MCPPort</B> *************** *** 261,264 **** --- 307,322 ---- <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- MCPWillCreateNewDB"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/MCPWillCreateNewDB">MCPWillCreateNewDB</A></H3><P> + <CODE>- (BOOL)<B>MCPWillCreateNewDB</B> + </CODE><P> + No method description. + + <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- MCPgetConnection"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/MCPgetConnection">MCPgetConnection</A></H3><P> + <CODE>- (MCPConnection *)<B>MCPgetConnection</B> + </CODE><P> + Get directly the MCPConnection of the MCPDocument... This method should be used with care, because one can (inadvertly) modify the DB connection of the document itself, producing further inexpected state later. + + <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- MCPinsertRow:"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/MCPinsertRow:">MCPinsertRow:</A></H3><P> <CODE>- (unsigned int)<B>MCPinsertRow:</B>(NSString *)<EM>insert</EM> *************** *** 274,285 **** <P><HR WIDTH=25% ALIGN=LEFT> - <A NAME="- MCPpasswordSheetDidEnd:returnCode:contextInfo:"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/MCPpasswordSheetDidEnd:returnCode:contextInfo:">MCPpasswordSheetDidEnd:returnCode:contextInfo:</A></H3><P> - <CODE>- (void)<B>MCPpasswordSheetDidEnd:</B>(NSWindow *)<EM>sheet</EM> <B>returnCode:</B>(int)<EM>returnCode</EM> <B>contextInfo:</B>(void *)<EM>contextInfo</EM> - - </CODE><P> - Method called once the user enterred the password and click Ok (or press return) - Try to make a connection (depending of the button clicked), if password is refused, go back to ask connection information. - - <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- MCPqueryString:"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/MCPqueryString:">MCPqueryString:</A></H3><P> <CODE>- (MCPResult *)<B>MCPqueryString:</B>(NSString *)<EM>query</EM> --- 332,335 ---- *************** *** 289,292 **** --- 339,348 ---- <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- createModelDB"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/createModelDB">createModelDB</A></H3><P> + <CODE>- (BOOL)<B>createModelDB</B> + </CODE><P> + No method description. + + <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- dataRepresentationOfType:"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/dataRepresentationOfType:">dataRepresentationOfType:</A></H3><P> <CODE>- (NSData *)<B>dataRepresentationOfType:</B>(NSString *)<EM>aType</EM> *************** *** 357,360 **** --- 413,423 ---- <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- setMCPModelName:"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/setMCPModelName:">setMCPModelName:</A></H3><P> + <CODE>- (void)<B>setMCPModelName:</B>(NSString *)<EM>theModelName</EM> + + </CODE><P> + No method description. + + <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- setMCPPort:"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/setMCPPort:">setMCPPort:</A></H3><P> <CODE>- (void)<B>setMCPPort:</B>(unsigned int)<EM>thePort</EM> *************** *** 364,367 **** --- 427,437 ---- <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- setMCPWillCreateNewDB:"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/setMCPWillCreateNewDB:">setMCPWillCreateNewDB:</A></H3><P> + <CODE>- (void)<B>setMCPWillCreateNewDB:</B>(BOOL)<EM>theWillCreateNewDB</EM> + + </CODE><P> + No method description. + + <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- windowControllerDidLoadNib:"></A><H3><A NAME="//apple_ref/occ/instm/MCPDocument/windowControllerDidLoadNib:">windowControllerDidLoadNib:</A></H3><P> <CODE>- (void)<B>windowControllerDidLoadNib:</B>(NSWindowController *)<EM>aController</EM> *************** *** 370,374 **** What to do when a specific window is loaded: - Nothing for the Connection Info Window (MCPConnectionWindow.nib). ! - Whatever one wants for another window type. --- 440,446 ---- What to do when a specific window is loaded: - Nothing for the Connection Info Window (MCPConnectionWindow.nib). ! - Whatever one wants for another window type.<P> ! ! Indeed it looks like this method is never called, unless one has a single window controller document... not the case here... *************** *** 377,381 **** <P><HR> ! Version 1.1 Copyright ©2004 by Serge Cohen. All Rights Reserved. Thu Mar 04 22:45:47 2004 <P> </BODY></HTML> --- 449,453 ---- <P><HR> ! Version 1.1 Copyright ©2004 by Serge Cohen. All Rights Reserved. Mon Aug 09 09:26:32 2004 <P> </BODY></HTML> Index: MCPResult+MCPResultPlus.html =================================================================== RCS file: /cvsroot/mysql-cocoa/Documentation/website/SMySQL_doc/MCPResult+MCPResultPlus.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MCPResult+MCPResultPlus.html 4 Mar 2004 22:19:12 -0000 1.2 --- MCPResult+MCPResultPlus.html 9 Aug 2004 16:07:49 -0000 1.3 *************** *** 115,119 **** <P><HR> ! Version 1.1 Copyright ©2003 by Serge Cohen. All Rights Reserved. Thu Mar 04 22:45:46 2004 <P> </BODY></HTML> --- 115,119 ---- <P><HR> ! Version 1.1 Copyright ©2003 by Serge Cohen. All Rights Reserved. Mon Aug 09 09:26:31 2004 <P> </BODY></HTML> Index: MCPResult.html =================================================================== RCS file: /cvsroot/mysql-cocoa/Documentation/website/SMySQL_doc/MCPResult.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MCPResult.html 4 Mar 2004 22:19:12 -0000 1.2 --- MCPResult.html 9 Aug 2004 16:07:49 -0000 1.3 *************** *** 160,163 **** --- 160,167 ---- <DD> <A HREF="#- fetchTypesAsDictionary">- fetchTypesAsDictionary</A></DD> + <DD> <A HREF="#- fetchFlagsAtIndex:">- fetchFlagsAtIndex:</A></DD> + + <DD> <A HREF="#- fetchFlagsForKey:">- fetchFlagsForKey:</A></DD> + <DD> <A HREF="#- isBlobAtIndex:">- isBlobAtIndex:</A></DD> *************** *** 217,221 **** <CODE>+ (void)<B>initialize</B> </CODE><P> ! Initialize the class version to 2.0.0 --- 221,225 ---- <CODE>+ (void)<B>initialize</B> </CODE><P> ! Initialize the class version to 2.3.1 *************** *** 263,266 **** --- 267,284 ---- <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- fetchFlagsAtIndex:"></A><H3><A NAME="//apple_ref/occ/instm/MCPResult/fetchFlagsAtIndex:">fetchFlagsAtIndex:</A></H3><P> + <CODE>- (unsigned int)<B>fetchFlagsAtIndex:</B>(unsigned int)<EM>index</EM> + + </CODE><P> + Return the MySQL flags of the column at the given <I>index</I>... Can be used to check if a number is signed or not... + + <P><HR WIDTH=25% ALIGN=LEFT> + <A NAME="- fetchFlagsForKey:"></A><H3><A NAME="//apple_ref/occ/instm/MCPResult/fetchFlagsForKey:">fetchFlagsForKey:</A></H3><P> + <CODE>- (unsigned int)<B>fetchFlagsForKey:</B>(NSString *)<EM>key</EM> + + </CODE><P> + No method description. + + <P><HR WIDTH=25% ALIGN=LEFT> <A NAME="- fetchRowAsArray"></A><H3><A NAME="//apple_ref/occ/instm/MCPResult/fetchRowAsArray">fetchRowAsArray</A></H3><P> <CODE>- (NSArray *)<B>fetchRowAsArray</B> *************** *** 287,291 **** </CODE><P> ! Return the next row of the result as a collection of type defined by <I>aType</I> (namely MCPTypeArray or MCPTypeDictionary). Each field of the row is made into a proper object to hold the info (NSNumber, NSString...).<P> This method returned directly the <B>mutable</B> object generated while going through all the columns --- 305,309 ---- </CODE><P> ! Return the next row of the result as a collection of type defined by <I>aType</I> (namely MCPTypeArray or MCPTypeDictionary). Each field of the row is made into a proper object to hold the info (NSNumber -indeed MCPNumber, to keep signedness-, NSString...).<P> This method returned directly the <B>mutable</B> object generated while going through all the columns *************** *** 345,349 **** Return YES if the field with the given <I>index</I> is a BLOB. It should be used to discriminates between BLOBs and TEXTs.<P> ! <B>NOT YET IMPLEMENTED</B>, return YES for both BLOBs and TEXTs... <P><HR WIDTH=25% ALIGN=LEFT> --- 363,369 ---- Return YES if the field with the given <I>index</I> is a BLOB. It should be used to discriminates between BLOBs and TEXTs.<P> ! <B>DEPRECATED</B>, This method is not consistent with the C API which is supposed to return YES for BOTH text and blob (and BTW is also deprecated)...<P> ! ! <B>NOTE</B> That the current version handles properly TEXT, and returns those as NSString (and not NSData as it used to be). <P><HR WIDTH=25% ALIGN=LEFT> *************** *** 354,358 **** Return YES if the field (by name) with the given index is a BLOB. It should be used to discriminates between BLOBs and TEXTs.<P> ! <B>NOT YET IMPLEMENTED</B>, return YES for both BLOBs and TEXTs... <P><HR WIDTH=25% ALIGN=LEFT> --- 374,380 ---- Return YES if the field (by name) with the given index is a BLOB. It should be used to discriminates between BLOBs and TEXTs.<P> ! <B>DEPRECATED</B>, This method is not consistent with the C API which is supposed to return YES for BOTH text and blob (and BTW is also deprecated)...<P> ! ! <B>NOTE</B> That the current version handles properly TEXT, and returns those as NSString (and not NSData as it used to be). <P><HR WIDTH=25% ALIGN=LEFT> *************** *** 380,384 **** </CODE><P> ! Use the string encoding to convert the returned NSData to a string (for a Text field) --- 402,406 ---- </CODE><P> ! Use the string encoding to convert the returned NSData to a string (for a TEXT field) *************** *** 387,391 **** <P><HR> ! Version 1.1 Copyright ©2003 by Serge Cohen. All Rights Reserved. Thu Mar 04 22:45:46 2004 <P> </BODY></HTML> --- 409,413 ---- <P><HR> ! Version 1.2 Copyright ©2004 by Serge Cohen. All Rights Reserved. Mon Aug 09 09:26:32 2004 <P> </BODY></HTML> Index: NSObject+MCPNSNullTest.html =================================================================== RCS file: /cvsroot/mysql-cocoa/Documentation/website/SMySQL_doc/NSObject+MCPNSNullTest.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** NSObject+MCPNSNullTest.html 4 Mar 2004 22:19:12 -0000 1.2 --- NSObject+MCPNSNullTest.html 9 Aug 2004 16:07:49 -0000 1.3 *************** *** 77,81 **** <P><HR> ! Version 1.1 Copyright ©2003 by Serge Cohen. All Rights Reserved. Thu Mar 04 22:45:46 2004 <P> </BODY></HTML> --- 77,81 ---- <P><HR> ! Version 1.1 Copyright ©2003 by Serge Cohen. All Rights Reserved. Mon Aug 09 09:26:32 2004 <P> </BODY></HTML> |