[Newbies] [Solved] Re: SQLite3 'Unable to find function address'

2009-02-19 Thread aditya siram
Hi all,
The issue was that SQLiteLibrary moduleName was incorrectly set to
libsqlite3.framework. Once I set that to 'libsqlite3.so', everything works
fine.

Thanks,
deech

On Thu, Feb 19, 2009 at 10:29 PM, aditya siram wrote:

> Hi all,
> I am not sure if this is the place to ask, but I have installed FFI and the
> Sqlite3 package, but am unable to use it.
>
> I have a database file 'test.db' in the 'Smalltalk imagePath' location, but
> the following interaction from a workspace fails.
> 
> db := SQLiteConnection fileNamed:'test.db'.
> db open.
> 
> I get an 'Unable to find function address' error.
>
> I have included a screenshot. If this isn't the right forum please point me
> in the right direction.
>
> Thanks ...
> Deech
>
___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners


[Newbies] Mail server in Squeak

2008-05-28 Thread Aditya Siram

Hi all,
Is there an SMTP server in Squeak?

Deech
_
E-mail for the greater good. Join the i’m Initiative from Microsoft.
http://im.live.com/Messenger/IM/Join/Default.aspx?source=EML_WL_ 
GreaterGood___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners


[Newbies] SSH server in Squeak

2008-05-08 Thread Aditya Siram

Hi all,
I was wondering how to get an SSH server working in Squeak. I was told that 
this service has been implemented but I can't find any documentation. I 
originally posted to the Seaside mailing list but this is probably a better 
forum for it. 

Thanks ...
Deech

_
With Windows Live for mobile, your contacts travel with you.
http://www.windowslive.com/mobile/overview.html?ocid=TXT_TAGLM_WL_Refresh_mobile_052008___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners


[Newbies] Any Smalltalkers/Squeakers in St Louis?

2007-05-05 Thread Aditya Siram
Anyone in this group from St Louis? Is there is an active groups in this 
area? Want to start one?


Thanks..
Aditya

_
Get a FREE Web site, company branded e-mail and more from Microsoft Office 
Live! http://clk.atdmt.com/MRT/go/mcrssaub0050001411mrt/direct/01/


___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners


RE: [Newbies] Re: Setting Breakpoints to Read Code

2007-05-05 Thread Aditya Siram
Thanks for your input. However, I am trying to get handle on Seaside with 
lots of methods and a confusing (at least for me since I have no experience 
with web frameworks) control flow. I would like to run one of the examples 
and see what method is being interpreted at each step. Is there a way I can 
add breakpoints to all the methods in a certain package?


Thanks...
Aditya


From: "Jeroen van Hilst" <[EMAIL PROTECTED]>
Reply-To: "A friendly place to get answers to even the most basic 
questionsabout Squeak." 

To: beginners@lists.squeakfoundation.org
Subject: [Newbies] Re: Setting Breakpoints to Read Code
Date: Sat, 5 May 2007 00:51:53 +0200

Aditya,

You can put this inside any method:

self halt. "Will show up a stack trace"

- Jeroen


"Aditya Siram" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi all,
> I am new to Squeak and its debugging interface. I am trying to get a
handle
> on Seaside by setting breakpoints on the methods in the example apps.
>
> Is there a way to bulk set breakpoints for all classes and methods in 
the

> Seaside package(or any other package) ? I would like to see exactly what
> code is being executed at any given time. Is there an easier way?
>
> Thanks...
> Deech
>
> _
> Get a FREE Web site, company branded e-mail and more from Microsoft 
Office

> Live! http://clk.atdmt.com/MRT/go/mcrssaub0050001411mrt/direct/01/



___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners


_
Download Messenger. Join the i’m Initiative. Help make a difference today. 
http://im.live.com/messenger/im/home/?source=TAGHM_APR07


___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners


[Newbies] Setting Breakpoints to Read Code

2007-05-04 Thread Aditya Siram

Hi all,
I am new to Squeak and its debugging interface. I am trying to get a handle 
on Seaside by setting breakpoints on the methods in the example apps.


Is there a way to bulk set breakpoints for all classes and methods in the 
Seaside package(or any other package) ? I would like to see exactly what 
code is being executed at any given time. Is there an easier way?


Thanks...
Deech

_
Get a FREE Web site, company branded e-mail and more from Microsoft Office 
Live! http://clk.atdmt.com/MRT/go/mcrssaub0050001411mrt/direct/01/


___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners


[Newbies] Setting up User Accounts and Authentication in Seaside

2007-04-03 Thread Aditya Siram

Hi all,
I would like to use Seaside to give users access to different services. Is 
there a pre-built user authentication / user permissions package in Seaside?


Thanks...
Deech

_
Download Messenger. Join the i’m Initiative. Help make a difference today. 
http://im.live.com/messenger/im/home/?source=TAGHM_APR07


___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners


[Newbies] Newbie: Error Checking in Dynamically typed Language

2006-12-09 Thread Aditya Siram

Hi all,
This is my first time working with a dynamically typed environment and my 
first instinct is to error check all arguments. For example suppose I want 
to create an object to represent an octet in an IP address (a number between 
0 and 256) I would do something like this:


Object subclass: #Octet
   instanceVariables: 'octetValue'
   ..

initialize
   super initialize.
   octetValue := 0.

setOctetValue: numBtw0And256
   octetValue = numBtw0And256<---Here's where I have a problem

How do I know the numBtw0And256 is actually an integer between 0 and 256 and 
not 'cat' or '3.14'?


Since I came from statically typed languages I feel like I writing a whole 
bunch of error  checking code along the lines of ifIsInteger: ... etc which 
doesn't seem to be in the spirit of Squeak.


What am I doing wrong?

Thanks

Deech

_
WIN up to $10,000 in cash or prizes – enter the Microsoft Office Live 
Sweepstakes http://clk.atdmt.com/MRT/go/aub0050001581mrt/direct/01/


___
Beginners mailing list
Beginners@lists.squeakfoundation.org
http://lists.squeakfoundation.org/mailman/listinfo/beginners