Page 2 of 3

Re: PureBasic 4.41 RC1 Released!

Posted: Tue Jan 19, 2010 3:44 am
by DoubleDutch
Thanks. :)

Re: PureBasic 4.41 RC1 Released!

Posted: Tue Jan 19, 2010 9:49 pm
by byo
Thanks for the update! :)

Re: PureBasic 4.41 RC1 Released!

Posted: Wed Jan 20, 2010 2:12 am
by Paul
Link on download page says
Download PureBasic 4.41 RC 1 for Windows (x86)

yet the file downloaded says
PureBasic_Windows_4.41_Beta_1_x86.exe

Is this a mistake??

Re: PureBasic 4.41 RC1 Released!

Posted: Wed Jan 20, 2010 10:20 am
by Fred
yes, the filename is wrong, i will correct that.

Re: PureBasic 4.41 RC1 Released!

Posted: Wed Jan 20, 2010 5:43 pm
by GeBonet
Thanks for the update to ! :) And really very good work ...:D
I hope the user suggestions will be even more present in future versions :roll:

Re: PureBasic 4.41 RC1 Released!

Posted: Fri Jan 22, 2010 1:32 am
by jamba
this may be a dumb question, but what is the sqlite version in the database library?

Or, how would one go about figuring that out?

Thanks! :mrgreen:

Re: PureBasic 4.41 RC1 Released!

Posted: Fri Jan 22, 2010 4:08 pm
by byo
jamba wrote:but what is the sqlite version in the database library?
It's the actual SQLite database "engine" version.
You can look here for more information: http://www.sqlite.org/
Look to the right under Current Status.
jamba wrote:Or, how would one go about figuring that out?
Normally you would use the command "sqlite_version()" in a query through Purebasic's DatabaseQuery command.

Something like this:

Code: Select all

UseSQLiteDatabase()

If OpenDatabase(0, "C:\Andre.db", "", "")
	DatabaseQuery(0, "SELECT sqlite_version()")
	If NextDatabaseRow(0)
		Debug GetDatabaseString(0, 0)
	EndIf
	CloseDatabase(0)
EndIf

Re: PureBasic 4.41 RC1 Released!

Posted: Fri Jan 22, 2010 5:27 pm
by GG
3.6.14.2 with Pb 4.40.

Re: PureBasic 4.41 RC1 Released!

Posted: Sat Jan 23, 2010 9:07 pm
by klaver
Is is possible to update SQLite to newest in 4.41?
Oh, and is there any chance of adding the OpenThread_() API before 2012?

Re: PureBasic 4.41 RC1 Released!

Posted: Sat Jan 23, 2010 11:41 pm
by freak
> Oh, and is there any chance of adding the OpenThread_() API before 2012?

:roll:

Re: PureBasic 4.41 RC1 Released!

Posted: Sun Jan 24, 2010 10:28 pm
by schrott
Yes,
One more vote for sqlite updates..

Re: PureBasic 4.41 RC1 Released!

Posted: Sun Jan 24, 2010 11:15 pm
by byo
There is no point in updating SQLite unless you specify what is bug is corrected that prevents your software from running or being usable.
SQLite was great even way before 3.6 version. Mabe tell the reason why you think the new version is way better
than the current one used by Purebasic. I use SQLite since version 2 and I'm satisfied with it since then.

Re: PureBasic 4.41 RC1 Released!

Posted: Sun Jan 24, 2010 11:22 pm
by ts-soft
sqlite.org wrote:Current Status

* Version 3.6.22 of SQLite is recommended for all new development. Upgrading from version 3.6.12 and 3.6.13 is optional. Upgrading from all other SQLite versions is recommended.

Re: PureBasic 4.41 RC1 Released!

Posted: Mon Jan 25, 2010 12:12 am
by schrott
If you put part of that quote in bold, then it should be "all other" - since it's 3.6.14.2
http://www.sqlite.org/changes.html

Re: PureBasic 4.41 RC1 Released!

Posted: Mon Jan 25, 2010 12:23 am
by ts-soft
schrott wrote:If you put part of that quote in bold, then it should be "all other" - since it's 3.6.14.2
http://www.sqlite.org/changes.html
what is your real problem with the current version?