Update of /cvsroot/mysql-cocoa/SMySQL_test
In directory usw-pr-cvs1:/tmp/cvs-serv3925
Modified Files:
main2.m
Log Message:
Check the new version of the framework:0.7.0 (modified list method names). Changed again list methods 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.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** main2.m 15 May 2002 09:53:02 -0000 1.6
--- main2.m 15 May 2002 11:03:33 -0000 1.7
***************
*** 68,72 ****
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);
--- 68,72 ----
NSLog (@"Here is theNSLog of a SMySQLResult %@", result);
! result = [connection listFieldsFromTable:@"test1" like:nil];
[result fetchFieldsName];
NSLog (@"Here is theNSLog of a SMySQLResult (listFields:nil forTable:test1) %@", result);
***************
*** 80,84 ****
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);
--- 80,84 ----
NSLog (@"Here is the NSLog of a SMySQLResult (listDBs) : \n%@", result);
! result = [connection listDBsLike:@"test\\_%%"];
[result fetchFieldsName];
NSLog (@"Here is the NSLog of a SMySQLResult (listDBs:test\\_%%) : \n%@", result);
|