![]() |
|
|||||||
| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| Basic4ppc Wishlist Missing any feature? |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Hi,
I've been looking at Basic4PPC in the last week and looks fairly good for creating applications with a quick turn around time. The one piece that I haven't been able to find is a recordset or equivalent to simplify database record manipulation. (move first, move next, move previous, and move last). Sure I can go off and write something which simulates it, but before I go off an do that unit of work wanted to see if it was on anybody's radar. Thoughts? Cheers. M |
|
|||
|
Code:
' move to the previous bet in the table BetRow = (BetRow+tblBet.RowCount-1) Mod tblBet.RowCount ' move to the next Bet in the Table BetRow = (BetRow+1) Mod tblBet.RowCount Flat Bet Investment |
|
|||
|
Hi,
Its fairly straight forward to do with sql statements (assuming you have designed your sql tables properly and have created the right indexes with your primary key and whatever sort order you are wanting to go through the database - you need an ability to uniquely identify each row, that is the big gotcha). I've seen it done on other database engines - as everything I've read about sqllite's sql implementation there is no reason to suggest that it won't work in that engine either - like I said a bit of code to make it happen. Cheers. M |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Copy Record from one database to another database. | mozaharul | Questions & Help Needed | 0 | 07-15-2008 05:47 AM |
| SQLite implementation question | glook | Questions & Help Needed | 4 | 10-18-2007 10:33 AM |
| Runtime controls manipulation | Erel | Tutorials | 0 | 09-26-2007 02:18 PM |
| How to convert an Access database to a sqlite database | Peter | Code Samples & Tips | 5 | 07-24-2007 04:20 PM |
| Runtime control manipulation | Erel | Code Samples & Tips | 6 | 05-11-2007 02:19 PM |