Giter Club home page Giter Club logo

Comments (8)

satyan avatar satyan commented on June 23, 2024

Yes. What we could do is open a method to execute raw queries. This would enable us to execute 'vacuum' query. We could also wrap this with a method vacuum on an Entity.

Thanks for the suggestion. We'll add that quickly.

from sugar.

Tyris avatar Tyris commented on June 23, 2024

Sounds good =)
Thanks!

from sugar.

satyan avatar satyan commented on June 23, 2024

There are two new static methods to execute raw queries on SugarRecord classes.

// for specific vacuum call. Could execute other raw queries too here with arguments.
Note.executeQuery("VACUUM");

// for finders using raw query. Initial stages now, need to do more testing here.
List<Note> notes = Note.findWithQuery(Note.class, "Select * from Note where name = ?", "satya");

Please try these and let me know if it works for you.

Thanks.

from sugar.

homer123 avatar homer123 commented on June 23, 2024

The raw query using findWithQuery works well for my application where I can build a query string from spinner data and then call this method. Would you know why

DataRecord.findWithQuery(DataRecord.class, "SELECT * FROM DATA_RECORD WHERE NAME = ?", "NOT NULL");

provides no results but

DataRecord.findWithQuery(DataRecord.class, "SELECT * FROM DATA_RECORD WHERE NAME <> ?", "NULL");

listed the completed database. I expected both cases to provide the same result

from sugar.

satyan avatar satyan commented on June 23, 2024

@Tyris Did it resolve your issue?

from sugar.

Tyris avatar Tyris commented on June 23, 2024

Hi @satyan - sorry I've taken so long to reply... had compiled in the change but hadn't had a chance to get around to testing it. It seems to execute fine; though my database is too small I think to currently actually benefit from a VACUUM (well, Android reports my used data is 48kb). Since the all doesn't throw any errors though I guess thats all good =)
Thx.

from sugar.

satyan avatar satyan commented on June 23, 2024

cool.. Thanks.

from sugar.

whoshuu avatar whoshuu commented on June 23, 2024

Addressed in 81b1984.

from sugar.

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.