[Mysql-cocoa-commits] CVS: SMySQL MCPConnection.m,1.1.2.8,1.1.2.9 MCPResult.m,1.1.2.8,1.1.2.9 MCPNul
Brought to you by:
sergecohen
From: Serge C. <ser...@us...> - 2002-11-29 12:00:13
|
Update of /cvsroot/mysql-cocoa/SMySQL In directory sc8-pr-cvs1:/tmp/cvs-serv24359 Modified Files: Tag: version-2 MCPConnection.m MCPResult.m MCPNull.m MCPResultPlus.m MCPFastQueries.m Log Message: Added the Id tag in the header of the documentation files... Serge Cohen; MySQL-Cocoa project 2002-11-29. Index: MCPConnection.m =================================================================== RCS file: /cvsroot/mysql-cocoa/SMySQL/Attic/MCPConnection.m,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -C2 -d -r1.1.2.8 -r1.1.2.9 *** MCPConnection.m 22 Aug 2002 21:02:45 -0000 1.1.2.8 --- MCPConnection.m 29 Nov 2002 12:00:08 -0000 1.1.2.9 *************** *** 38,41 **** --- 38,42 ---- @implementation MCPConnection /*" + !{ $Id$ } 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. Index: MCPResult.m =================================================================== RCS file: /cvsroot/mysql-cocoa/SMySQL/Attic/MCPResult.m,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -C2 -d -r1.1.2.8 -r1.1.2.9 *** MCPResult.m 29 Nov 2002 11:06:24 -0000 1.1.2.8 --- MCPResult.m 29 Nov 2002 12:00:08 -0000 1.1.2.9 *************** *** 34,37 **** --- 34,38 ---- @implementation MCPResult /*" + !{ $Id$ } Hold the results of a query to a MySQL database server. It correspond to the MYSQL_RES structure of the C API, and to the statement handle of the PERL DBI/DBD. Index: MCPNull.m =================================================================== RCS file: /cvsroot/mysql-cocoa/SMySQL/Attic/MCPNull.m,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** MCPNull.m 3 Jun 2002 13:39:24 -0000 1.1.2.2 --- MCPNull.m 29 Nov 2002 12:00:08 -0000 1.1.2.3 *************** *** 29,32 **** --- 29,34 ---- @implementation NSObject (MCPNSNullTest) /*" + !{ $Id$ } + This Category is meant to make any kind of object the possible target to the test (isNSNull) "*/ Index: MCPResultPlus.m =================================================================== RCS file: /cvsroot/mysql-cocoa/SMySQL/Attic/MCPResultPlus.m,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -d -r1.1.2.3 -r1.1.2.4 *** MCPResultPlus.m 22 Aug 2002 21:02:45 -0000 1.1.2.3 --- MCPResultPlus.m 29 Nov 2002 12:00:08 -0000 1.1.2.4 *************** *** 28,31 **** --- 28,38 ---- @implementation MCPResult (MCPResultPlus) + /*" + !{ $Id$ } + + This Category is provided to get shortcuts reformat the table obtained by a MCPResult (fetching a column, a 2D array...). + "*/ + + - (NSArray *) fetchColAtIndex:(unsigned int) aCol /*" Index: MCPFastQueries.m =================================================================== RCS file: /cvsroot/mysql-cocoa/SMySQL/Attic/MCPFastQueries.m,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -d -r1.1.2.4 -r1.1.2.5 *** MCPFastQueries.m 22 Aug 2002 21:02:45 -0000 1.1.2.4 --- MCPFastQueries.m 29 Nov 2002 12:00:08 -0000 1.1.2.5 *************** *** 31,38 **** --- 31,40 ---- @implementation MCPConnection (MCPFastQueries) /*" + !{ $Id$ } This actegory is made up to keep the extra methods out or the core of the framework. Basicly this is the place to add methods which are useful, but are just wrappers to the methods of the core (MCPConnection, MCPResult). The purpous being to have a single line call available for current tasks which otherwise would need a couple of lines and object defined. "*/ + - (my_ulonglong) insertQuery:(NSString *) aQuery /*" |