ScriptBasic
May 22, 2012, 02:14:27 AM
Welcome,
Guest
. Please
login
or
register
.
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News
: The ScriptBasic User, Developer and extension module guides are available at the
WIKI
.
Home
Wiki
Help
Search
Login
Register
ScriptBasic
>
Open Forum
>
What's New
>
ScriptBasic Hash Extension Module Fix
Pages: [
1
]
« previous
next »
Print
Author
Topic: ScriptBasic Hash Extension Module Fix (Read 519 times)
support
Administrator
Posts: 409
ScriptBasic Hash Extension Module Fix
«
on:
April 10, 2011, 11:20:44 AM »
Armando fixed an age old issue with the hash extension module (memory error) and I tested it on both 32 and 64 bit Ubuntu.
Armando's test program
Code:
import hash.bas
h = hash::New()
for i=1 to 10
hash::SetValue h,"q"&i,i
next i
hash::Start h
while hash::Exists(h)
print hash::ThisKey(h)," ", hash::ThisValue(h)
print
hash::Next h
wend
hash::Release h
jrs@Laptop:~/SB/test$ scriba hash.air
q1 1
q2 2
q3 3
q4 4
q5 5
q6 6
q7 7
q8 8
q9 9
q10 10
jrs@Laptop:~/SB/test$
hash-src.tar.gz
(3.84 KB - downloaded 44 times.)
hash.so-32.tar.gz
(2.91 KB - downloaded 45 times.)
hash.so-64.tar.gz
(3.63 KB - downloaded 43 times.)
«
Last Edit: April 10, 2011, 11:26:57 AM by support
»
Logged
Pages: [
1
]
Print
« previous
next »
Jump to:
Please select a destination:
-----------------------------
Open Forum
-----------------------------
=> Round Table
=> What's New
-----------------------------
ScriptBasic
-----------------------------
=> Download
=> Tutorials
=> Wish List
-----------------------------
Support
-----------------------------
=> General Discussions
=> Installation
=> ScriptBasic Examples w/source
=> Debugger
=> Source
=> Documentation
-----------------------------
Extension Modules
-----------------------------
=> Extension Modules
===> DVM
===> Curl
===> mxml
===> IUP
===> CGI
===> MySQL
===> ODBC
===> Berkeley DB
===> PSQL
===> GSL
===> Rlib
===> GTK-Server
===> CIO
===> NT
===> DYC
===> ZLIB
===> RE
===> HASH
===> GD
===> MT
===> T
===> DBG
Loading...