]> err.no Git - sope/blob - sope-gdl1/SQLite3/SQLiteValues.m
fixed fetch issue
[sope] / sope-gdl1 / SQLite3 / SQLiteValues.m
1 /* 
2    SQLiteValues.m
3
4    Copyright (C) 1999-2005 MDlink online service center GmbH and Helge Hess
5
6    Author: Helge Hess (helge@mdlink.de)
7
8    This file is part of the SQLite Adaptor Library
9
10    This library is free software; you can redistribute it and/or
11    modify it under the terms of the GNU Library General Public
12    License as published by the Free Software Foundation; either
13    version 2 of the License, or (at your option) any later version.
14
15    This library is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    Library General Public License for more details.
19
20    You should have received a copy of the GNU Library General Public
21    License along with this library; see the file COPYING.LIB.
22    If not, write to the Free Software Foundation,
23    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 */
25
26 #import "SQLiteValues.h"
27 #import "common.h"
28
29 @implementation SQLiteDataTypeMappingException
30
31 - (id)initWithObject:(id)_obj
32   forAttribute:(EOAttribute *)_attr
33   andSQLite3Type:(NSString *)_dt
34   inChannel:(SQLiteChannel *)_channel;
35 {  
36   NSDictionary *ui;
37   NSString *typeName = nil;
38   NSString *r;
39
40   typeName = _dt;
41
42   if (typeName == nil)
43     typeName = [NSString stringWithFormat:@"Oid[%i]", _dt];
44
45   r = [NSString stringWithFormat:
46                               @"mapping between %@<Class:%@> and "
47                               @"SQLite type %@ is not supported",
48                               [_obj description],
49                               NSStringFromClass([_obj class]),
50                 typeName];
51   ui = [NSDictionary dictionaryWithObjectsAndKeys:
52                                     _attr,    @"attribute",
53                                     _channel, @"channel",
54                                     _obj,     @"object",
55                      nil];
56   
57   [self setName:@"DataTypeMappingNotSupported"];
58   [self setReason:r];
59
60   [self setUserInfo:ui];
61   return self;
62 }
63
64 @end /* SQLiteDataTypeMappingException */
65
66 @implementation NSNull(SQLiteValues)
67
68 - (NSString *)stringValueForSQLite3Type:(NSString *)_type
69   attribute:(EOAttribute *)_attribute
70 {
71   return @"null";
72 }
73
74 @end /* NSNull(SQLiteValues) */
75
76 @implementation NSObject(SQLiteValues)
77
78 - (id)initWithSQLiteInt:(int)_value {
79   if ([self respondsToSelector:@selector(initWithInt:)])
80     return [(NSNumber *)self initWithInt:_value];
81   
82   if ([self respondsToSelector:@selector(initWithDouble:)])
83     return [(NSNumber *)self initWithDouble:_value];
84   
85   if ([self respondsToSelector:@selector(initWithString:)]) {
86     NSString *s;
87     char buf[256];
88
89     sprintf(buf, "%i", _value);
90     s = [[NSString alloc] initWithCString:buf];
91     self = [(NSString *)self initWithString:s];
92     [s release];
93     return self;
94   }
95   
96   [self release];
97   return nil;
98 }
99
100 - (id)initWithSQLiteDouble:(double)_value {
101   if ([self respondsToSelector:@selector(initWithDouble:)])
102     return [(NSNumber *)self initWithDouble:_value];
103   
104   [self release];
105   return nil;
106 }
107
108 - (id)initWithSQLiteText:(const unsigned char *)_value {
109   if ([self respondsToSelector:@selector(initWithString:)]) {
110     NSString *s;
111     
112     s = [[NSString alloc] initWithUTF8String:_value];
113     self = [(NSString *)self initWithString:s];
114     [s release];
115     return self;
116   }
117   
118   [self release];
119   return nil;
120 }
121
122 - (id)initWithSQLiteData:(const void *)_data length:(int)_length {
123   if ([self respondsToSelector:@selector(initWithBytes:length:)])
124     return [(NSData *)self initWithBytes:_data length:_length];
125   
126   if ([self respondsToSelector:@selector(initWithData:)]) {
127     NSData *d;
128     
129     d = [[NSData alloc] initWithBytes:_data length:_length];
130     self = [(NSData *)self initWithData:d];
131     [d release];
132     return self;
133   }
134   
135   [self release];
136   return nil;
137 }
138
139 @end /* NSObject(SQLiteValues) */
140
141 void __link_SQLiteValues() {
142   // used to force linking of object file
143   __link_SQLiteValues();
144 }