[Mysql-cocoa-commits] CVS: MySQL_Display SMySQLDatabaseDoc.m,1.3,1.4
Brought to you by:
sergecohen
From: Serge C. <ser...@us...> - 2002-05-07 18:41:35
|
Update of /cvsroot/mysql-cocoa/MySQL_Display In directory usw-pr-cvs1:/tmp/cvs-serv13566 Modified Files: SMySQLDatabaseDoc.m Log Message: Smalls modifications, in the NSLogs. Serge Cohen; MySQL Cocoa project, May 7th 2002. Index: SMySQLDatabaseDoc.m =================================================================== RCS file: /cvsroot/mysql-cocoa/MySQL_Display/SMySQLDatabaseDoc.m,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SMySQLDatabaseDoc.m 7 May 2002 17:25:52 -0000 1.3 --- SMySQLDatabaseDoc.m 7 May 2002 18:41:31 -0000 1.4 *************** *** 199,203 **** "*/ { - NSLog (@"in resetConnection : protocol version : %d, server version : %s\n", (int)PROTOCOL_VERSION, MYSQL_SERVER_VERSION); if ((mHost == nil) || (mLogin == nil) || (mDatabase == nil)) { // Here we should throw an exception, impossible to connect (or reconnect) to unknown host, login or DB --- 199,202 ---- *************** *** 212,216 **** [mConnection selectDB:mDatabase]; } ! NSLog (@"Now the same info from the Library (no #defines) :\n protocol %@, server version %@, client version %@, host info %@", [mConnection protoInfo], [mConnection serverInfo], [mConnection clientInfo], [mConnection hostInfo]); return; } --- 211,215 ---- [mConnection selectDB:mDatabase]; } ! NSLog (@"Some info from the Library :\n protocol %@, server version %@, client version %@, host info %@", [mConnection protoInfo], [mConnection serverInfo], [mConnection clientInfo], [mConnection hostInfo]); return; } |