Coder Social home page Coder Social logo

BLOB data about lkdbhelper-sqlite-orm HOT 8 CLOSED

li6185377 avatar li6185377 commented on June 3, 2024
BLOB data

from lkdbhelper-sqlite-orm.

Comments (8)

li6185377 avatar li6185377 commented on June 3, 2024

overwrite methods

+(void)initialize
{
    [self setUserCalculateForCN:@"images"];
}
-(void)userSetValueForModel:(LKDBProperty *)property value:(id)value
{
    if([property.propertyName isEqualToString:@"images"])
    {
        NSData* data = [value dataUsingEncoding:NSUTF8StringEncoding];
        UIImage* image = [[UIImage alloc]initWithData:data];
        [self setValue:image forKey:@"images"];
    }
}

from lkdbhelper-sqlite-orm.

alaaghribi avatar alaaghribi commented on June 3, 2024

I did it right now, overwritten initialize method and added that method as you mentioned:

-(void)userSetValueForModel:(LKDBProperty )property value:(id)value
{
if([property.propertyName isEqualToString:@"image"])
{
NSData *data = [value dataUsingEncoding:NSUTF8StringEncoding];
UIImage
imageImg = [[UIImage alloc]initWithData:data];
NSLog(@"imageImg %@",imageImg); //HERE IT'S NULL
[self setValue:imageImg forKey:@"image"];
}
}

But it's a (null) image. Any hint please?

from lkdbhelper-sqlite-orm.

alaaghribi avatar alaaghribi commented on June 3, 2024

value is also null.

from lkdbhelper-sqlite-orm.

alaaghribi avatar alaaghribi commented on June 3, 2024

I can mail you the database if you want to directly check for the issue.

from lkdbhelper-sqlite-orm.

li6185377 avatar li6185377 commented on June 3, 2024

In front of the fix bug, I write a demo may help you, and you can update the code
https://github.com/li6185377/BLOBDemo

from lkdbhelper-sqlite-orm.

alaaghribi avatar alaaghribi commented on June 3, 2024

Thank you for your answer. But I have the image as BLOB type and not as text type. Can you please send me your mail to send you the database ?

from lkdbhelper-sqlite-orm.

li6185377 avatar li6185377 commented on June 3, 2024

That demo just is BLOB type. you look BLOB.db can send my mail. [email protected]

from lkdbhelper-sqlite-orm.

alaaghribi avatar alaaghribi commented on June 3, 2024

Problem solved, thank you very much for updating LKDB :).

from lkdbhelper-sqlite-orm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.