It would be nice if the PB Editor/Compiler...could remember if the project has an icon assigned to it.
Instead of having to keep resetting it from the options.
Search found 7 matches
- Wed Mar 04, 2009 12:51 am
- Forum: Feature Requests and Wishlists
- Topic: Persistant Icon reference
- Replies: 2
- Views: 1156
- Fri Feb 27, 2009 2:39 pm
- Forum: Coding Questions
- Topic: Read data from a sqlite table
- Replies: 5
- Views: 1579
- Fri Feb 27, 2009 1:48 am
- Forum: Coding Questions
- Topic: Read data from a sqlite table
- Replies: 5
- Views: 1579
- Thu Feb 26, 2009 9:37 pm
- Forum: Coding Questions
- Topic: Read data from a sqlite table
- Replies: 5
- Views: 1579
Read data from a sqlite table
OK I have a sqlite db with table set up.
Verified thru the SQLite browser application.
I try to read each column from each row. When I call the
While NextDatabaseRow(Number of the db)
The number is returned from the
DBnumber = OpenDatabase(#PB_Any, Filename$, "", "", PB_Database_SQLite)
So the ...
Verified thru the SQLite browser application.
I try to read each column from each row. When I call the
While NextDatabaseRow(Number of the db)
The number is returned from the
DBnumber = OpenDatabase(#PB_Any, Filename$, "", "", PB_Database_SQLite)
So the ...
- Fri Feb 20, 2009 3:36 pm
- Forum: Coding Questions
- Topic: A very basic (read: noob) sqlite question
- Replies: 4
- Views: 653
- Fri Feb 20, 2009 2:21 am
- Forum: Coding Questions
- Topic: A very basic (read: noob) sqlite question
- Replies: 4
- Views: 653
- Fri Feb 20, 2009 2:03 am
- Forum: Coding Questions
- Topic: A very basic (read: noob) sqlite question
- Replies: 4
- Views: 653
A very basic (read: noob) sqlite question
Yes I am a complete db noob.
Am trying to use the sqlite db functions in PB.
I have a sqlite db with table created.
How do I put the data which is in a string variable into the table?
This works:
CheckDatabaseUpdate(0, "INSERT INTO food (name, weight) VALUES ('apple', '10')")
OK I now have the ...
Am trying to use the sqlite db functions in PB.
I have a sqlite db with table created.
How do I put the data which is in a string variable into the table?
This works:
CheckDatabaseUpdate(0, "INSERT INTO food (name, weight) VALUES ('apple', '10')")
OK I now have the ...