ymuruvi / proclipsing

Automatically exported from code.google.com/p/proclipsing
0 stars 0 forks source link

Export of an project using SQLibrary fails #25

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Install SQLibrary ( http://bezier.de/processing/libs/sql/ ) and create a new 
Proclipsing project including this library.
2. Add some lines of code:
private static SQLite db;

    public void setup() {
        size(200, 200);
        background(0);
        String pathToDbFile = this.getClass().getClassLoader()
                .getResource("database.db").getFile();
        db = new SQLite(this, pathToDbFile);

        }

What is the expected output? What do you see instead?
The applet is working fine when executed in Eclipse. But the result of the 
export only is a white, 200x200 square.

What version of the product are you using? On what operating system?
Processing 1.5.1, Proclipsing 1.0.8, SQLibrary 0.1.0

Original issue reported on code.google.com by ch.sunt...@web.de on 2 Jun 2011 at 7:05

GoogleCodeExporter commented 8 years ago
OK you can delete this issue. The problem are the file access restrictions of 
the applet. So SQLite throws an exception when accessing the db-file.

Original comment by ch.sunt...@web.de on 8 Jun 2011 at 11:55

GoogleCodeExporter commented 8 years ago

Original comment by maddpar...@gmail.com on 21 Jun 2011 at 7:21