Git Product home page Git Product logo

entropydb's People

Watchers

 avatar

entropydb's Issues

Sorting results?

All.. great work on this!  Found it the quickest way to build robust DB apps..

I'm wondering if you have any plans to implement sorting on the retrieval side 
-- possibly in 
conjunction with a predicate filter.

any thoughts?

Original issue reported on code.google.com by [email protected] on 14 Aug 2008 at 2:59

Building on simulator fails

Steps to reproduce the problem:
1. Download the sample
2. Build and run on the simulator
3. I get "symbols not found" failures for 4 of the entropy DB files

It does seem to build on the device fine, but not on the Simulator.  This
makes development slower than it should be.

I'm using the current version of the code and sample that are posted on the
website.  Previous versions have worked in the simulator, but not on the
phone.  This version has the reverse problem.

Is there a known fix to this?  Thanks. 

Original issue reported on code.google.com by [email protected] on 18 Aug 2008 at 6:02

Second field declared in object saved with wrong value

1. Create a class with few fields:
@interface MyClass : EXSharedObject {
    NSString* anOkString;
    NSUInteger wrongValueHere; //Second field always wrong
    NSUInteger thisIsOk;
    NSUInteger thisIsAlsoOK;
}
2. Create an instance with values in all fields
3. Store the object
4. Load it and check 'wrongValueHere' field

The field is always corrupted regardless to the field type (same results with 
NSString*), holding wrong value. All other fields work fine.

Tested with version 1.1 (Using trunk out of SVN) compiled locally.


Original issue reported on code.google.com by [email protected] on 11 Aug 2010 at 11:39

Able to save translation

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
An option to be able to store your translated words, sentences, etc. Being 
able to refer back instead of having to translate it again.

What version of the product are you using? On what operating system?
1.0.7- iPhone

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 1 Jan 2009 at 9:52

Bulding on Device

What steps will reproduce the problem?
1. Download the sample application
2. In the build settings change to Device (running on latest firmware 2.0.2)
3. Perform simple build

What is the expected output? What do you see instead?
What i see is
  "_OBJC_CLASS_$_EXSharedObject", referenced from:
      _OBJC_CLASS_$_CustomObject in CustomObject.o

  "_OBJC_CLASS_$_EXContainer", referenced from:
      __objc_classrefs__DATA@0 in EntropySample1AppDelegate.o
  "_OBJC_METACLASS_$_EXSharedObject", referenced from:
      _OBJC_METACLASS_$_CustomObject in CustomObject.o
  "_OBJC_CLASS_$_EXFile", referenced from:
      __objc_classrefs__DATA@0 in EntropySample1AppDelegate.o
ld: symbol(s) not found
collect2: ld returned 1 exit status

What version of the product are you using? On what operating system?
Using the latest version on Mac OS 10.5.4


Please provide any additional information below.

For me on the simulator works fine...but when switching to the device the
build process fails...


Original issue reported on code.google.com by [email protected] on 19 Aug 2008 at 7:30

NSString leaks in EXContainer.m

Use of queryWithClass result a memory leak of NSString.

Tested on latests stable version from the SVN.

What happen is that EXContainer obtain ownership over an NSString instance by 
calling  alloc+initWithUTF8String and never releasing it (check 
http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/MemoryMgmt
/Articles/mmPractical.html).

The leaks can be located in EXContainer.m lines: 501, 580, 606 and 629.
For example line 501:

    NSString* className = [[NSString alloc] initWithUTF8String: _className];
    id object = [[NSClassFromString(className) alloc] autorelease];
    ...

The instance className is not released which leads to memory leak.

To fix add [className release] after retrieving the object, like:

    NSString* className = [[NSString alloc] initWithUTF8String: _className];
    id object = [[NSClassFromString(className) alloc] autorelease];
    [className release];





Original issue reported on code.google.com by [email protected] on 25 Aug 2010 at 12:05

Crash while resaving

What steps will reproduce the problem?
1. save a class object that contains some data in the database
2. later load the object and change some of the data in some way
3. try to insert the object into the database again.

What is the expected output? What do you see instead?
I would like to see it overwrite the object still saved in the database... 
instead the application 
crashes.

Original issue reported on code.google.com by [email protected] on 3 Nov 2008 at 11:03

Add support for unsigned types

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


Please use labels and text to provide additional information.



Original issue reported on code.google.com by [email protected] on 18 Apr 2009 at 11:30

entropy_db sample does not compile for device

What steps will reproduce the problem?
1. Load sample project
2. Click Build


Please provide any additional information below.

I get the following errors on build:

  "_OBJC_CLASS_$_EXSharedObject", referenced from:
      _OBJC_CLASS_$_CustomObject in CustomObject.o
  "_OBJC_CLASS_$_EXContainer", referenced from:
      __objc_classrefs__DATA@0 in EntropySample1AppDelegate.o
  "_OBJC_METACLASS_$_EXSharedObject", referenced from:
      _OBJC_METACLASS_$_CustomObject in CustomObject.o
  "_OBJC_CLASS_$_EXPredicateEqualInt64", referenced from:
      __objc_classrefs__DATA@0 in RootViewController.o
  "_OBJC_CLASS_$_EXFile", referenced from:
      __objc_classrefs__DATA@0 in EntropySample1AppDelegate.o
ld: symbol(s) not found
collect2: ld returned 1 exit status

Original issue reported on code.google.com by [email protected] on 4 Aug 2008 at 4:09

sample crash on iphone SDK 3.0+

What steps will reproduce the problem?
1. Running Entropy Sample on iphone simulator 3.0
2.
3.

What is the expected output? What do you see instead?
crash when we push the "add item" button

What version of the product are you using? On what operating system?
Tested and working on iphone simulator 2.2 

Please provide any additional information below.
the trace:
2009-10-23 00:18:28.664 EntropySample1[2314:20b] *** -[CustomObject
className]: unrecognized selector sent to instance 0xe335c0
2009-10-23 00:18:28.665 EntropySample1[2314:20b] Nested exception: ***
-[CustomObject className]: unrecognized selector sent to instance 0xe335c0
2009-10-23 00:18:28.666 EntropySample1[2314:20b] *** Terminating app due to
uncaught exception 'EXException', reason: 'Cannot store object'

Original issue reported on code.google.com by [email protected] on 22 Oct 2009 at 10:27

  • Merged into: #3

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.