//************************************************************************************officail suggestion
Special Considerations
Do not use the uniqueIdentifier property. To create a unique identifier specific to your app, you can call the CFUUIDCreate function to create a UUID, and write it to the defaults database using the NSUserDefaults class.
however this value won't be the same if a user uninstalls and re-installs the app.
uniqueDeviceIdentifier (MD5 of MAC+CFBundleIdentifier)
and uniqueGlobalDeviceIdentifier(MD5 of the MAC), these always returns the same values.
#import "UIDevice+IdentifierAddition.h"
#import "NSString+MD5Addition.h"
#include <sys/socket.h> // Per msqr
#include <sys/sysctl.h>
#include <net/if.h>
#include <net/if_dl.h>
@interface UIDevice(Private)
- (NSString *) macaddress;
@end
@implementation UIDevice (IdentifierAddition)
////////////////////////////////////////////////////////////////////////////////
#pragma mark -
#pragma mark Private Methods
// Return the local MAC addy
// Courtesy of FreeBSD hackers email list
// Accidentally munged during previous update. Fixed thanks to erica sadun & mlamb.
- (NSString *) macaddress{
int mib[6];
size_t len;
char *buf;
unsigned char *ptr;
struct if_msghdr *ifm;
struct sockaddr_dl *sdl;
mib[0] = CTL_NET;
mib[1] = AF_ROUTE;
mib[2] = 0;
mib[3] = AF_LINK;
mib[4] = NET_RT_IFLIST;
if ((mib[5] = if_nametoindex("en0")) == 0) {
printf("Error: if_nametoindex error\n");
return NULL;
}
if (sysctl(mib, 6, NULL, &len, NULL, 0) < 0) {
printf("Error: sysctl, take 1\n");
return NULL;
}
if ((buf = malloc(len)) == NULL) {
printf("Could not allocate memory. error!\n");
return NULL;
}
if (sysctl(mib, 6, buf, &len, NULL, 0) < 0) {
printf("Error: sysctl, take 2");
return NULL;
}
ifm = (struct if_msghdr *)buf;
sdl = (struct sockaddr_dl *)(ifm + 1);
ptr = (unsigned char *)LLADDR(sdl);
NSString *outstring = [NSString stringWithFormat:@"%02X:%02X:%02X:%02X:%02X:%02X",
*ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4), *(ptr+5)];
free(buf);
return outstring;
}
////////////////////////////////////////////////////////////////////////////////
#pragma mark -
#pragma mark Public Methods
- (NSString *) uniqueDeviceIdentifier{
NSString *macaddress = [[UIDevice currentDevice] macaddress];
NSString *bundleIdentifier = [[NSBundle mainBundle] bundleIdentifier];
NSString *stringToHash = [NSString stringWithFormat:@"%@%@",macaddress,bundleIdentifier];
NSString *uniqueIdentifier = [stringToHash stringFromMD5];
return uniqueIdentifier;
}
- (NSString *) uniqueGlobalDeviceIdentifier{
NSString *macaddress = [[UIDevice currentDevice] macaddress];
NSString *uniqueIdentifier = [macaddress stringFromMD5];
return uniqueIdentifier;
}
@end
#import "NSString+MD5Addition.h"
#import <CommonCrypto/CommonDigest.h>
@implementation NSString(MD5Addition)
- (NSString *) stringFromMD5{
if(self == nil || [self length] == 0)
return nil;
const char *value = [self UTF8String];
unsigned char outputBuffer[CC_MD5_DIGEST_LENGTH];
CC_MD5(value, strlen(value), outputBuffer);
NSMutableString *outputString = [[NSMutableString alloc] initWithCapacity:CC_MD5_DIGEST_LENGTH * 2];
for(NSInteger count = 0; count < CC_MD5_DIGEST_LENGTH; count++){
[outputString appendFormat:@"%02x",outputBuffer[count]];
}
return [outputString autorelease];
}
@end
分享到:
相关推荐
PRINT 'Value of @myid is: ' + CONVERT(varchar(255), @myid); ``` 这段代码首先声明了一个名为 `@myid` 的 `uniqueidentifier` 类型的变量,然后使用 `NEWID()` 函数为其赋值。`NEWID()` 函数返回一个全局唯一...
SqlServer中Int类型快速转uniqueidentifier
在SQL Server中,`uniqueidentifier` 是一种数据类型,用于存储全局唯一标识符(GUID)。GUID 是一个由系统生成的128位数值,保证在全局范围内是唯一的。然而,在某些场景下,我们可能需要将这些`uniqueidentifier`...
在SQL Server中,`uniqueidentifier`数据类型是用来存储全局唯一标识符(GUID)的,它在数据库中确保每个值都是唯一的。GUID是一个128位的整数,通常以`xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx`的形式表示,这里的每...
修正powerdesigner无法为SQL SERVER2005、2008自动生成GUID数据类型的测试数据问题,解压后直接覆盖相关文件。 建立test data profile,进行相关设置即可自动生成GUID测试数据。 具体设置可参照博文:...
描述中提到的"uniqueidentifier"是SQL Server特有的数据类型,用于存储全局唯一标识符(GUID)。在MySQL中没有直接对应的类型,通常可以使用`CHAR(36)`或`VARCHAR(36)`来存储,因为它通常以字符串形式表示。 迁移...
解决 SQL Server 最大流水号的方法 SQL Server 中,最大流水...解决 SQL Server 最大流水号的问题可以使用 SCOPE_IDENTITY 函数或结合 UNIQUEIDENTIFIER 和 IDENTITY 的方法。开发者可以根据实际情况选择合适的方法。
- **ApplicationId**: 应用程序的唯一标识符,类型为`uniqueidentifier`,通常为GUID值,作为主键(PK)使用。 - **Description**: 应用程序的描述,类型为`nvarchar(256)`,允许为空(`nullable`)。 ##### 3.2 ...
isnull(c.name_ch, '')+isnull(','+d.name_ch, '') as tasteName_ch, isnull(c.name_en, '')+isnull(','+d.name_en, '') as tasteName_en, a.remark as remark from t_order_temp a left join t_dishes b on a....
`NEWID()`函数是SQL Server中的一个内置函数,用于生成一个新的唯一标识符(Unique Identifier),即`uniqueidentifier`类型的值。这个值每次调用时都会不同,并且在整个数据库系统中都是唯一的。这使得`NEWID()`...
例如,在上述例子中使用了`int`、`uniqueidentifier`和`datetime`作为列的数据类型,这是因为它们分别适用于状态标识、用户标识以及时间记录。 2. **允许空值**:由于在添加新列时指定了`NULL`关键字,这意味着这些...
`ISNULL()`函数处理空值,`WHERE`后使用`IS NULL`或`IS NOT NULL`来判断字段是否为空。 `UNION`操作符用于合并多个查询结果,`UNION ALL`则保留所有记录,不剔除重复项。日期和时间操作,如`DATEADD()`和`DATEPART...
- **ApplicationId**:类型为 uniqueidentifier,用于标识应用程序。每个应用程序都有一个唯一的 ApplicationId,这使得可以在同一个数据库中存储多个应用程序的用户数据。 - **UserId**:类型为 uniqueidentifier,...
when @xtype = 36 then ''' + convert(char(36), @name) + ''' -- uniqueidentifier else @name end end end fetch next from syscolumns_cursor into @name, @xtype end close syscolumns_cursor deallocate ...
- 对于字符型(`char`, `varchar`, `uniqueidentifier`),使用`ISNULL`函数结合字符串连接来确保NULL值被正确处理。 - 对于Unicode字符型(`nchar`, `nvarchar`),同样采用`ISNULL`函数并加上`N`前缀来处理。 -...
全局唯一标识符(GUID,Globally Unique Identifier)也称作 UUID(Universally Unique IDentifier) 。 GUID是一种由算法生成的二进制长度为128位的数字标识符。GUID 的格式为“xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx...
id uniqueidentifier primary key default newid(), name_ch nvarchar(20), naem_en nvarchar(60), d_code nvarchar(2) ) go insert into t_classify_method(id, name_ch, name_en, d_code) values ('2F71F378-...
`uniqueidentifier` 是SQL Server的内置数据类型,而`NEWID()` 函数则用于生成新的`GUID` 值。 存储过程(Stored Procedure)是预编译的SQL语句集合,可以封装复杂的业务逻辑并重复使用。使用存储过程可以提高性能...
- 使用 `IS NULL` 和 `IS NOT NULL` 来判断值是否为空。 - 使用 `CASE` 表达式进行条件判断。 9. **分组与聚合**:使用 `GROUP BY` 对数据进行分组,并结合 `HAVING` 子句对分组后的结果进一步筛选。例如,`GROUP...