Search found 4 matches
- Fri Jan 09, 2009 4:38 am
- Forum: PSP Development
- Topic: dc v6 graphics
- Replies: 241
- Views: 345632
- Tue Feb 12, 2008 2:55 am
- Forum: PSP Development
- Topic: SQLite3 Sample
- Replies: 4
- Views: 2228
Ok, it works, but now I need a more difficult thing: When I select data from a table, I need to have the result in array. Sample: Table test_tbl col1 col2 -> col name data1 data2 -> data stored When I select * from test_tbl I want to have this: array[0] = data1 and array[1] = data2. It's possible? :...
- Tue Feb 12, 2008 1:27 am
- Forum: PSP Development
- Topic: SQLite3 Sample
- Replies: 4
- Views: 2228
- Mon Feb 11, 2008 5:12 am
- Forum: PSP Development
- Topic: SQLite3 Sample
- Replies: 4
- Views: 2228
SQLite3 Sample
Hello all guys, I'm developing a mmorpg game for PSP and I want to save the character data in a DB. I saw SQLite3 for PSP and I try to use it, but I can't insert values into a table. I know how to create the db and create a table, but I can't put this query in the DB: INSERT INTO pj (id, lvl, hp, mp...