SpiderBasic 2.20 final is out !

Everything else that doesn't fall into one of the other categories.
User avatar
T4r4ntul4
Posts: 132
Joined: Wed May 21, 2014 1:57 pm
Location: Netherlands
Contact:

Re: SpiderBasic 2.20 beta 1 is available !

Post by T4r4ntul4 »

it should have a database link in the general libraries?
i see only: date, debugger, desktop and dialog

in the help manual that is

edit: and database.pb dont exist as exmaple in the help manual
tj1010
Posts: 201
Joined: Wed May 27, 2015 1:36 pm
Contact:

Re: SpiderBasic 2.20 beta 1 is available !

Post by tj1010 »

Wow those local file functions are awesome
the.weavster
Posts: 219
Joined: Sat Mar 01, 2014 3:02 pm

Re: SpiderBasic 2.20 beta 1 is available !

Post by the.weavster »

Outstanding new features!
SpiderBasic is moving to a new level now.

I think the SpiderBasic website needs updating to emphasize the fact it can be used for creating mobile apps, 'A Basic to master the web' just doesn't do it justice ;)
Fred
Site Admin
Posts: 1506
Joined: Mon Feb 24, 2014 10:51 am

Re: SpiderBasic 2.20 beta 1 is available !

Post by Fred »

beta 2 is available on your online account and brings some important fixes !
Thorsten1867
Posts: 1
Joined: Wed Feb 26, 2014 1:57 pm

Re: SpiderBasic 2.20 beta 2 is available !

Post by Thorsten1867 »

Code: Select all

DB = OpenDatabase(#PB_Any)

If DB
 
  DatabaseUpdate(DB, "Create Table SuperHeroes (Prename TEXT, Surname TEXT)")
 
  DatabaseUpdate(DB, "Insert Into SuperHeroes (Prename, Surname) Values ('Peter', 'Parker')")
  DatabaseUpdate(DB, "Insert Into SuperHeroes (Prename, Surname) Values ('Bruce', 'Wayne')")
  DatabaseUpdate(DB, "Insert Into SuperHeroes (Prename, Surname) Values ('Clark', 'Kent')")
 
  If DatabaseQuery(DB, "Select * From SuperHeroes Where Prename = 'Peter'")
    While NextDatabaseRow(DB)
      Debug GetDatabaseString(DB, 1) + "," + GetDatabaseString(DB, 0)
    Wend
    FinishDatabaseQuery(DB)
  EndIf
 
  CloseDatabase(DB)
 
EndIf
User avatar
Peter
Posts: 1086
Joined: Mon Feb 24, 2014 10:17 pm
Location: 127.0.0.1:9080
Contact:

Re: SpiderBasic 2.20 beta 2 is available !

Post by Peter »

@Thorsten1867: ?
User avatar
SparrowhawkMMU
Posts: 281
Joined: Wed Aug 19, 2015 3:02 pm
Location: United Kingdom

Re: SpiderBasic 2.20 beta 2 is available !

Post by SparrowhawkMMU »

@fred, I realise that this was not in the original wishlist post, but if it's not complicated to do, would you mind adding the following HTTP methods for completeness:

HEAD
OPTIONS
TRACE

And I wondered whether you were working on adding the ability to access response headers, as we have the ability to add request headers from 2.10?

With the above, we would have the full toolkit to write and consume APIs of any flavour (REST, RPC, etc).

Work is crazily busy right now so I still have not tested the beta, but I have set up a small PHP script to check what is sent using the new flags, so will knock up the SB front end soon and report back.

Thanks
Fred
Site Admin
Posts: 1506
Joined: Mon Feb 24, 2014 10:51 am

Re: SpiderBasic 2.20 final is out !

Post by Fred »

final version is out, thanks a lot for the testing and feedback !
User avatar
Peter
Posts: 1086
Joined: Mon Feb 24, 2014 10:17 pm
Location: 127.0.0.1:9080
Contact:

Re: SpiderBasic 2.20 final is out !

Post by Peter »

Fred wrote:final version is out, thanks a lot for the testing and feedback !
Thanks a lot for the new version! Image

Greetings ... Peter
User avatar
useful
Posts: 116
Joined: Tue Feb 25, 2014 1:15 pm

Re: SpiderBasic 2.20 final is out !

Post by useful »

2B or not 2B = FF
Post Reply