Using SQL lite in windows?

Forum closed. All further discussion to be discussed at https://github.com/OpenKore/

Moderator: Moderators

Message
Author
flashdbest
Plain Yogurt
Plain Yogurt
Posts: 61
Joined: 12 Nov 2012, 09:22
Noob?: Yes

Using SQL lite in windows?

#1 Post by flashdbest »

Hi guys,

I'm trying to use SQLite in openkore plugins, but the thing is. the code is already working on ubuntu linux. but not in windows.

tried adding DBI.dll inside the folder of openkore but it seems to be not working (it has a lot of dependencies).

my question is, is there an easier way of making this work on windows?

Thanks for the help!

flashdbest
Plain Yogurt
Plain Yogurt
Posts: 61
Joined: 12 Nov 2012, 09:22
Noob?: Yes

Re: Using SQL lite in windows?

#2 Post by flashdbest »

nobody willing to teach or give pointers? :(

flashdbest
Plain Yogurt
Plain Yogurt
Posts: 61
Joined: 12 Nov 2012, 09:22
Noob?: Yes

Re: Using SQL lite in windows?

#3 Post by flashdbest »

errr no one knows?

just in case I'll rephrase the question:

1:) What compiler / packer do you use for openkore? to create the start.exe file

2:) I've probably figured out where i should place the missing modules in openkore folder (which is in src/deps). can someone confirm if this is correct?

3:) Does the compiler automatically add the module + .DLL files to openkore? if not how do I it? where do i get it?

Thanks,
Hoping someone would be willing to help

EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: Using SQL lite in windows?

#4 Post by EternalHarvest »

What compiler / packer do you use for openkore? to create the start.exe file
I think PerlApp was used.
I've probably figured out where i should place the missing modules in openkore folder (which is in src/deps). can someone confirm if this is correct?
Pure Perl modules would work there.
Does the compiler automatically add the module + .DLL files to openkore? if not how do I it? where do i get it?
PerlApp makes something like executable archive from your file, Perl interpreter and all modules used by your file.

flashdbest
Plain Yogurt
Plain Yogurt
Posts: 61
Joined: 12 Nov 2012, 09:22
Noob?: Yes

Re: Using SQL lite in windows?

#5 Post by flashdbest »

Oh, I see.. so that means i have to look deeper in perlapp docs. :)


Thanks EternalHarvest

User avatar
kLabMouse
Administrator
Administrator
Posts: 1301
Joined: 24 Apr 2008, 12:02

Re: Using SQL lite in windows?

#6 Post by kLabMouse »

if you want, then you need ActivePerl 5.10 (Last time OepnKore windows binaries was compiled by this version, I think). And the module for it that you need.

WhatYOU
Noob
Noob
Posts: 7
Joined: 05 May 2009, 21:02
Noob?: Yes

Re: Using SQL lite in windows?

#7 Post by WhatYOU »

A little late, but it can serve someone new like me :P.

I try to do something, I add dependencies in deps, but eventually gave me an error which could not solve.

What I did was simple, create a script in python and simply call in sub.

Code: Select all

system('<directory .py>\test.py "'. <args> .'"');

Locked