[Mysql-cocoa-commits] CVS: SMySQL MCPConnection.m,1.1.2.9,1.1.2.10 MCPResult.m,1.1.2.9,1.1.2.10 MCPF
Brought to you by:
sergecohen
From: Serge C. <ser...@us...> - 2002-11-29 12:02:14
|
Update of /cvsroot/mysql-cocoa/SMySQL In directory sc8-pr-cvs1:/tmp/cvs-serv26089 Modified Files: Tag: version-2 MCPConnection.m MCPResult.m MCPFastQueries.m Log Message: Added the Id tag in the header of the documentation files... (+ newline). 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.9 retrieving revision 1.1.2.10 diff -C2 -d -r1.1.2.9 -r1.1.2.10 *** MCPConnection.m 29 Nov 2002 12:00:08 -0000 1.1.2.9 --- MCPConnection.m 29 Nov 2002 12:02:11 -0000 1.1.2.10 *************** *** 39,42 **** --- 39,43 ---- /*" !{ $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.9 retrieving revision 1.1.2.10 diff -C2 -d -r1.1.2.9 -r1.1.2.10 *** MCPResult.m 29 Nov 2002 12:00:08 -0000 1.1.2.9 --- MCPResult.m 29 Nov 2002 12:02:11 -0000 1.1.2.10 *************** *** 35,38 **** --- 35,39 ---- /*" !{ $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: MCPFastQueries.m =================================================================== RCS file: /cvsroot/mysql-cocoa/SMySQL/Attic/MCPFastQueries.m,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -C2 -d -r1.1.2.5 -r1.1.2.6 *** MCPFastQueries.m 29 Nov 2002 12:00:08 -0000 1.1.2.5 --- MCPFastQueries.m 29 Nov 2002 12:02:11 -0000 1.1.2.6 *************** *** 32,35 **** --- 32,36 ---- /*" !{ $Id$ } + This actegory is made up to keep the extra methods out or the core of the framework. |