PureBasic 4.41 RC1 Released!

Developed or developing a new product in PureBasic? Tell the world about it.
User avatar
DoubleDutch
Addict
Addict
Posts: 3220
Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:

Re: PureBasic 4.41 RC1 Released!

Post by DoubleDutch »

Thanks. :)
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
byo
Enthusiast
Enthusiast
Posts: 635
Joined: Mon Apr 02, 2007 1:43 am
Location: Brazil

Re: PureBasic 4.41 RC1 Released!

Post by byo »

Thanks for the update! :)
Proud registered Purebasic user.
Because programming should be fun.
User avatar
Paul
PureBasic Expert
PureBasic Expert
Posts: 1282
Joined: Fri Apr 25, 2003 4:34 pm
Location: Canada
Contact:

Re: PureBasic 4.41 RC1 Released!

Post 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??
Image Image
Fred
Administrator
Administrator
Posts: 18162
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PureBasic 4.41 RC1 Released!

Post by Fred »

yes, the filename is wrong, i will correct that.
User avatar
GeBonet
Enthusiast
Enthusiast
Posts: 135
Joined: Fri Apr 04, 2008 6:20 pm
Location: Belgium

Re: PureBasic 4.41 RC1 Released!

Post 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:
Sorry for my english :wink: ! (Windows Xp, Vista and Windows 7, Windows 10)
jamba
Enthusiast
Enthusiast
Posts: 144
Joined: Fri Jan 15, 2010 2:03 pm
Location: Triad, NC
Contact:

Re: PureBasic 4.41 RC1 Released!

Post 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:
-Jon

Fedora user
But I work with Win7
byo
Enthusiast
Enthusiast
Posts: 635
Joined: Mon Apr 02, 2007 1:43 am
Location: Brazil

Re: PureBasic 4.41 RC1 Released!

Post 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
Proud registered Purebasic user.
Because programming should be fun.
User avatar
GG
Enthusiast
Enthusiast
Posts: 266
Joined: Tue Jul 26, 2005 12:02 pm
Location: Lieusaint (77), France

Re: PureBasic 4.41 RC1 Released!

Post by GG »

3.6.14.2 with Pb 4.40.
Purebasic 6.12 64 bits - Windows 11 Pro 64 bits 23H2
klaver
Enthusiast
Enthusiast
Posts: 147
Joined: Wed Jun 28, 2006 6:55 pm
Location: Schröttersburg

Re: PureBasic 4.41 RC1 Released!

Post 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?
Image
freak
PureBasic Team
PureBasic Team
Posts: 5940
Joined: Fri Apr 25, 2003 5:21 pm
Location: Germany

Re: PureBasic 4.41 RC1 Released!

Post by freak »

> Oh, and is there any chance of adding the OpenThread_() API before 2012?

:roll:
quidquid Latine dictum sit altum videtur
schrott
New User
New User
Posts: 2
Joined: Sun Jan 24, 2010 10:25 pm

Re: PureBasic 4.41 RC1 Released!

Post by schrott »

Yes,
One more vote for sqlite updates..
byo
Enthusiast
Enthusiast
Posts: 635
Joined: Mon Apr 02, 2007 1:43 am
Location: Brazil

Re: PureBasic 4.41 RC1 Released!

Post 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.
Proud registered Purebasic user.
Because programming should be fun.
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Re: PureBasic 4.41 RC1 Released!

Post 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.
schrott
New User
New User
Posts: 2
Joined: Sun Jan 24, 2010 10:25 pm

Re: PureBasic 4.41 RC1 Released!

Post 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
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Re: PureBasic 4.41 RC1 Released!

Post 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?
Post Reply