Does PureBasic have any sort of multi-user database built into it? Or do I have to use something like MySQL? I would like to offer a single .EXE file which can manipulate a database with other users on the network, without the user having to also install MySQL, if possible.
Thanks,
Phil Thien
Is there a database built-in?
-
Num3
- PureBasic Expert

- Posts: 2812
- Joined: Fri Apr 25, 2003 4:51 pm
- Location: Portugal, Lisbon
- Contact:
You can write in PB a connection, without the need to set ODBC via the control panel.
check: viewtopic.php?t=1835
check: viewtopic.php?t=1835
Phil,
If you know SQL, you can use the free SQLite DLL (http://www.hwaci.com/sw/sqlite/) and the PureBasic SQLite library (http://www.reelmediaproductions.com/pb/ - click on "ASM Library" under "Code Archive").
I use this method and "IncludeBinary" the SQLite DLL into the PureBasic EXE file. Voilá - a complete SQL database application in one file!
Regards,
Eric
If you know SQL, you can use the free SQLite DLL (http://www.hwaci.com/sw/sqlite/) and the PureBasic SQLite library (http://www.reelmediaproductions.com/pb/ - click on "ASM Library" under "Code Archive").
I use this method and "IncludeBinary" the SQLite DLL into the PureBasic EXE file. Voilá - a complete SQL database application in one file!
Regards,
Eric
You can create and use Access databases on the fly - I did it in a little app I wrote when I first purchased PB. I'll gather the info up and post it soon..
-Mitchell
Check out kBilling for all your billing software needs!
http://www.k-billing.com
Code Signing / Authenticode Certificates (Get rid of those Unknown Publisher warnings!)
http://codesigning.ksoftware.net
Check out kBilling for all your billing software needs!
http://www.k-billing.com
Code Signing / Authenticode Certificates (Get rid of those Unknown Publisher warnings!)
http://codesigning.ksoftware.net

