[Mysql-cocoa-commits] CVS: SMySQL_test main2.m,1.5,1.6
Brought to you by:
sergecohen
From: Serge C. <ser...@us...> - 2002-05-15 09:53:07
|
Update of /cvsroot/mysql-cocoa/SMySQL_test In directory usw-pr-cvs1:/tmp/cvs-serv17045 Modified Files: main2.m Log Message: Check the new version of the framework:0.7.0 (modified list method names). Serge Cohen; MySQL Cocoa project, May 15th 2002. Index: main2.m =================================================================== RCS file: /cvsroot/mysql-cocoa/SMySQL_test/main2.m,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** main2.m 7 May 2002 19:10:57 -0000 1.5 --- main2.m 15 May 2002 09:53:02 -0000 1.6 *************** *** 68,84 **** NSLog (@"Here is theNSLog of a SMySQLResult %@", result); ! result = [connection listFields:nil forTable:@"test1"]; [result fetchFieldsName]; NSLog (@"Here is theNSLog of a SMySQLResult (listFields:nil forTable:test1) %@", result); ! result = [connection listDBs:nil]; [result fetchFieldsName]; NSLog (@"Here is the NSLog of a SMySQLResult (listDBs) : \n%@", result); ! result = [connection listDBs:@"test\\_%%"]; [result fetchFieldsName]; NSLog (@"Here is the NSLog of a SMySQLResult (listDBs:test\\_%%) : \n%@", result); ! result = [connection listTables:nil]; [result fetchFieldsName]; NSLog (@"Here is the NSLog of a SMySQLResult (listTables) : \n%@", result); --- 68,88 ---- NSLog (@"Here is theNSLog of a SMySQLResult %@", result); ! result = [connection listFieldsWithPattern:nil fromTable:@"test1"]; [result fetchFieldsName]; NSLog (@"Here is theNSLog of a SMySQLResult (listFields:nil forTable:test1) %@", result); ! result = [connection listFieldsFromTable:@"test1"]; ! [result fetchFieldsName]; ! NSLog (@"Here is theNSLog of a SMySQLResult (listFields:nil forTable:test1) %@", result); ! ! result = [connection listDBs]; [result fetchFieldsName]; NSLog (@"Here is the NSLog of a SMySQLResult (listDBs) : \n%@", result); ! result = [connection listDBsWithPattern:@"test\\_%%"]; [result fetchFieldsName]; NSLog (@"Here is the NSLog of a SMySQLResult (listDBs:test\\_%%) : \n%@", result); ! result = [connection listTables]; [result fetchFieldsName]; NSLog (@"Here is the NSLog of a SMySQLResult (listTables) : \n%@", result); |