OpenDatabase: SQLite Database Creation if file not found

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
User avatar
netmaestro
PureBasic Bullfrog
PureBasic Bullfrog
Posts: 8451
Joined: Wed Jul 06, 2005 5:42 am
Location: Fort Nelson, BC, Canada

OpenDatabase: SQLite Database Creation if file not found

Post by netmaestro »

Srod wonders whether the PB team could add functionality to create an empty database for OpenDatabase() in cases where the file is not found and UseSQLiteDatabase() is called first.
BERESHEIT
srod
PureBasic Expert
PureBasic Expert
Posts: 10589
Joined: Wed Oct 29, 2003 4:35 pm
Location: Beyond the pale...

Re: OpenDatabase: SQLite Database Creation if file not found

Post by srod »

netmaestro wrote:Srod wonders whether the PB team could add functionality to create an empty database for OpenDatabase() in cases where the file is not found and UseSQLiteDatabase() is called first.
Uhm, must be a different srod! :wink:
I may look like a mule, but I'm not a complete ass.
akj
Enthusiast
Enthusiast
Posts: 668
Joined: Mon Jun 09, 2003 10:08 pm
Location: Nottingham

Post by akj »

The following highly complex code will successfully create an empty SQLite database:

Code: Select all

CreateFile(#file, DbPath$)
CloseFile(#file)
Anthony Jordan
srod
PureBasic Expert
PureBasic Expert
Posts: 10589
Joined: Wed Oct 29, 2003 4:35 pm
Location: Beyond the pale...

Post by srod »

I think we are already aware of that.
I may look like a mule, but I'm not a complete ass.
Dare
Addict
Addict
Posts: 1965
Joined: Mon May 29, 2006 1:01 am
Location: Outback

Post by Dare »

Um .. what about cases where you don't actually want the db created willy-nilly? Are we talking flag options or just do it?

Flagged Option +1
Willy-nilly -1

:)
Dare2 cut down to size
User avatar
netmaestro
PureBasic Bullfrog
PureBasic Bullfrog
Posts: 8451
Joined: Wed Jul 06, 2005 5:42 am
Location: Fort Nelson, BC, Canada

Post by netmaestro »

#PB_Database_Willy_Nilly
:lol:
BERESHEIT
Dare
Addict
Addict
Posts: 1965
Joined: Mon May 29, 2006 1:01 am
Location: Outback

Post by Dare »

:lol:
Dare2 cut down to size
Post Reply