Search found 7 matches

by IndiQa
Wed Mar 04, 2009 12:51 am
Forum: Feature Requests and Wishlists
Topic: Persistant Icon reference
Replies: 2
Views: 1156

Persistant Icon reference

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.
by IndiQa
Fri Feb 27, 2009 2:39 pm
Forum: Coding Questions
Topic: Read data from a sqlite table
Replies: 5
Views: 1579

AAAHHHHCCCCHHH............

Thank you.. I am such a db noob......

Curt
by IndiQa
Fri Feb 27, 2009 1:48 am
Forum: Coding Questions
Topic: Read data from a sqlite table
Replies: 5
Views: 1579

Put my code in the first post.

Thanks FB
by IndiQa
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 ...
by IndiQa
Fri Feb 20, 2009 3:36 pm
Forum: Coding Questions
Topic: A very basic (read: noob) sqlite question
Replies: 4
Views: 653

One other question:

Never mind got it!!

Syntax is my downfall..

Thanks,
Curt
by IndiQa
Fri Feb 20, 2009 2:21 am
Forum: Coding Questions
Topic: A very basic (read: noob) sqlite question
Replies: 4
Views: 653

Thanks man I do appreciate it.

I knew it was simple and now maybe I am a little less...simple that is :-)

Curt
by IndiQa
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 ...