Max Jitter Javascript Documentation
A simple JavaDoc style javascript reference. You're welcome to help to complete this documentation.
Download this tool
that is very nice
thanks to Tim
see you @codecontrol.
This is great! Thanks very much
awesome. very very useful. how can I contribute examples?
at the moment via mail. i think of moving the project to github or something like this... mailto jsdoc at tim minus schenk dot de thanks for feedback
I'm having trouble opening a file-based database using the sqlite.open() . I tried an absolute path and relative path.
sqlite.open("C:\Project\db-max5-patches\db-max5-patches\frames.db", 0);
sqlite.open("frames.db", 0);
Can anyone see where I'm going wrong?
I'm having trouble opening a file-based database using the sqlite.open() . I tried an absolute path and relative path.
sqlite.open("C:Projectdb-max5-patchesdb-max5-patchesframes.db", 0);
sqlite.open("frames.db", 0);
Can anyone see where I'm going wrong?
No, I didn't test it before. The Documentation says not really much about database connections. I found no example.
There are two things I would try:
1) Try to use unix style path: /Project/db-max5-patches/db-max5-patches/frames.db (this should work, because C is your root partition)
2) If its in Max's search path, the filename only should work
Maybe you should ask the same question in the forum (and put the link to it in here), to get an answer.
Tim
Author