How can I use plugins of AMS5 that I purchased.
e.g. How to use Sqlite Database plugin in Setup Factory 7
Professional Software Development Tools
How can I use plugins of AMS5 that I purchased.
e.g. How to use Sqlite Database plugin in Setup Factory 7
Last edited by coffeeworm; 10-14-2004 at 01:33 AM.
Have a look at http://www.indigorose.com/forums/showthread.php?t=9027Originally Posted by Ted Sullivan
csd214
Thanks for your reply.
I make a test to use Sqlite plugin like that:
the code in [Global Functions]
------------------------------------------------------------
function createDB()
db = SQLite.Open("c:\\test.db");
SQLite.Query(db, "Create table song(ID integer primary key, sid text, name text, descript text)");
SQLite.Query(db, "Create table score(ID integer primary key, pid text, sid text, name text, descript text)");
SQLite.Query(db, "Create table music(ID integer primary key, sid text, name text, descript text)");
end
--------------------------------------------------------------
the code in [action/on postInstall]
-----------------------------------------------------
createDB();
---------------------------------------
I build the project to setup.exe and run it.
The test.db will be created,but I got an err form operation.
Why?![]()