]> err.no Git - sope/commitdiff
more renaming
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Mon, 11 Apr 2005 18:33:20 +0000 (18:33 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Mon, 11 Apr 2005 18:33:20 +0000 (18:33 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@720 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-gdl1/MySQL4/MySQL4Adaptor.m
sope-gdl1/MySQL4/MySQL4Context.m
sope-gdl1/MySQL4/MySQL4Expression.h
sope-gdl1/MySQL4/MySQL4Values.h
sope-gdl1/MySQL4/MySQL4Values.m
sope-gdl1/MySQL4/NSCalendarDate+SQLiteVal.m
sope-gdl1/MySQL4/NSData+SQLiteVal.m
sope-gdl1/MySQL4/NSNumber+SQLiteVal.m
sope-gdl1/MySQL4/NSString+SQLiteVal.m
sope-gdl1/MySQL4/common.h
sope-gdl1/MySQL4/gdltest.m

index d444574fe15566f778b2509f56ba340c9136ce88..bc2441ae10270c3b8c383a923f3aa5e70e98b3a9 100644 (file)
    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
 
-#import "common.h"
-#import "MySQL4Adaptor.h"
-#import "MySQL4Context.h"
-#import "MySQL4Channel.h"
-#import "MySQL4Expression.h"
-#import "MySQL4Values.h"
+#include "MySQL4Adaptor.h"
+#include "MySQL4Context.h"
+#include "MySQL4Channel.h"
+#include "MySQL4Expression.h"
+#include "MySQL4Values.h"
+#include "common.h"
 
 @implementation MySQL4Adaptor
 
-- (NSDictionary *)connectionDictionaryForNSURL:(NSURL *)_url {
-  /*
-    "Database URLs"
-    
-    We use the schema:
-      MySQL43://localhost/dbpath/foldername
-  */
-  NSMutableDictionary *md;
-  NSString *p;
-  
-  if ((p = [_url path]) == nil)
-    return nil;
-  
-  p = [p stringByDeletingLastPathComponent];
-  if ([p length] == 0) p = [_url path];
-  
-  md = [NSMutableDictionary dictionaryWithCapacity:8];
-  [md setObject:p forKey:@"databaseName"];
-  return md;
-}
-
 - (id)initWithName:(NSString *)_name {
   if ((self = [super initWithName:_name])) {
   }
 - (id)formatValue:(id)value forAttribute:(EOAttribute *)attribute {
   NSString *result;
   
-  result = [value stringValueForMySQL43Type:[attribute externalType]
+  result = [value stringValueForMySQL4Type:[attribute externalType]
                   attribute:attribute];
 
   //NSLog(@"formatting value %@ result %@", value, result);
index da3404b8b6dafb407bd0b378372fbdab719426f3..73a41a716022a7e1dc003c9a1d0b88986d3565b6 100644 (file)
@@ -32,7 +32,7 @@
 - (void)channelDidInit:_channel {
   if ([channels count] > 0) {
     [NSException raise:@"TooManyOpenChannelsException"
-                 format:@"MySQL43 only supports one channel per context"];
+                 format:@"MySQL4 only supports one channel per context"];
   }
   [super channelDidInit:_channel];
 }
index 9c987c5ffd532e5008e2c7a65cddac93e5d7f7a6..355a84e80c6db71f48c1cd6bd66556f265872c67 100644 (file)
@@ -23,8 +23,8 @@
    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
 
-#ifndef ___MySQL43_SQLExpression_H___
-#define ___MySQL43_SQLExpression_H___
+#ifndef ___MySQL4_SQLExpression_H___
+#define ___MySQL4_SQLExpression_H___
 
 #include <GDLAccess/EOSQLExpression.h>
 
@@ -52,4 +52,4 @@
 
 @end
 
-#endif /* ___MySQL43_SQLExpression_H___ */
+#endif /* ___MySQL4_SQLExpression_H___ */
index e6d82667d12002aec7b0355e2d26d5de66c689e4..ba884e7bde2cf6e6f9e623514ed540d683f5270d 100644 (file)
 
 - (id)initWithObject:(id)_obj
   forAttribute:(EOAttribute *)_attr
-  andMySQL43Type:(NSString *)_dt
+  andMySQL4Type:(NSString *)_dt
   inChannel:(MySQL4Channel *)_channel;
 
 @end
 
 @protocol MySQL4Values
 
-- (NSString *)stringValueForMySQL43Type:(NSString *)_type
+- (NSString *)stringValueForMySQL4Type:(NSString *)_type
   attribute:(EOAttribute *)_attribute;
 
 @end
@@ -75,7 +75,7 @@
 
 @interface EONull(MySQL4Values)
 
-- (NSString *)stringValueForMySQL43Type:(NSString *)_type
+- (NSString *)stringValueForMySQL4Type:(NSString *)_type
   attribute:(EOAttribute *)_attribute;
 
 @end
index b988d581720c784abad242c894b1921d46c3f823..15a60008c52a63a00dbde9c17e92222149d31299 100644 (file)
@@ -30,7 +30,7 @@
 
 - (id)initWithObject:(id)_obj
   forAttribute:(EOAttribute *)_attr
-  andMySQL43Type:(NSString *)_dt
+  andMySQL4Type:(NSString *)_dt
   inChannel:(MySQL4Channel *)_channel;
 {  
   NSDictionary *ui;
@@ -62,7 +62,7 @@
 
 @implementation NSNull(MySQL4Values)
 
-- (NSString *)stringValueForMySQL43Type:(NSString *)_type
+- (NSString *)stringValueForMySQL4Type:(NSString *)_type
   attribute:(EOAttribute *)_attribute
 {
   return @"null";
index f488ec8dc0c75b1bc473795e1162040091d047e5..3f078aed86f2dc5f17dc07e49efbd2d266d55059 100644 (file)
@@ -161,7 +161,7 @@ static NSTimeZone *gmt02 = nil;
 
 /* generating value */
 
-- (NSString *)stringValueForMySQL43Type:(NSString *)_type
+- (NSString *)stringValueForMySQL4Type:(NSString *)_type
   attribute:(EOAttribute *)_attribute
 {
 #if 0
index ab944efc0a0796ed90498a98578c5bfdf7d54074..42795d2608fcbbdb1991369d430ae3495fd93d26 100644 (file)
@@ -43,7 +43,7 @@
   return [self initWithBytes:_value length:_length];
 }
 
-- (NSString *)stringValueForMySQL43Type:(NSString *)_type
+- (NSString *)stringValueForMySQL4Type:(NSString *)_type
   attribute:(EOAttribute *)_attribute
 {
   // TODO: UNICODE
@@ -79,7 +79,7 @@
        [t hasPrefix:@"varchar"] ||
        [t hasPrefix:@"money"]   ||
        [t hasPrefix:@"text"]) {
-      t = [[str stringValueForMySQL43Type:_type 
+      t = [[str stringValueForMySQL4Type:_type 
                attribute:_attribute] retain];
       [str release];
       return [t autorelease];
index 441785927f2cf0a9bb53399e730dd8a325185e0c..9fdcdc8788a4c35aab068914b796f1a6c9689245 100644 (file)
@@ -53,7 +53,7 @@
   return nil;
 }
 
-- (NSString *)stringValueForMySQL43Type:(NSString *)_type
+- (NSString *)stringValueForMySQL4Type:(NSString *)_type
   attribute:(EOAttribute *)_attribute
 {
   // TODO: can we avoid the lowercaseString?
index 5ee6b0898389485e48612e737a95dcb851d450da..479713f7a418ea9f8f2a42cd98f07f0282b20547 100644 (file)
@@ -58,7 +58,7 @@ static Class EOExprClass = Nil;
 
 /* generate SQL value */
 
-- (NSString *)stringValueForMySQL43Type:(NSString *)_type
+- (NSString *)stringValueForMySQL4Type:(NSString *)_type
   attribute:(EOAttribute *)_attribute
 {
   // TODO: all this looks slow ...
index 93c6a5cd20aa7860408a7fa3079522f7aff7ea34..8b088d6a761ad808eed8d2987e66796f4bd64d31 100644 (file)
@@ -5,7 +5,7 @@
 
    Author: Helge Hess (helge@mdlink.de)
 
-   This file is part of the MySQL43 Adaptor Library
+   This file is part of the MySQL4 Adaptor Library
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
@@ -23,8 +23,8 @@
    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
 
-#ifndef ___MySQL43_common_H___
-#define ___MySQL43_common_H___
+#ifndef ___MySQL4_common_H___
+#define ___MySQL4_common_H___
 
 #import <objc/objc-api.h>
 
@@ -37,4 +37,4 @@
 #include <GDLAccess/GDLAccess.h>
 #include <NGExtensions/NGExtensions.h>
 
-#endif /* ___MySQL43_common_H___ */
+#endif /* ___MySQL4_common_H___ */
index d38ef33e5c2c53ea63ef1a4e381e0b7f3257d4f4..fc45df3c91c3c2419fa9a5bbfd67c03415ba1558 100644 (file)
@@ -170,8 +170,8 @@ static void runtest(void) {
   conDict = [NSDictionary dictionaryWithContentsOfFile:@"condict.plist"];
   NSLog(@"condict is %@", conDict);
   
-  if ((a = [EOAdaptor adaptorWithName:@"MySQL43"]) == nil) {
-    NSLog(@"found no MySQL43 adaptor ..");
+  if ((a = [EOAdaptor adaptorWithName:@"MySQL4"]) == nil) {
+    NSLog(@"found no MySQL4 adaptor ..");
     exit(1);
   }