Re: Some imc questions

2004-01-11 Thread Harry Jackson
Leopold Toetsch wrote: Harry Jackson <[EMAIL PROTECTED]> wrote: 251 .local pmc CONN 252 .local int int_answer 253 print "About to Connect\n" 254 P0 = C[0] 255 S5 = s 256 invoke 257 CONN = P5 Calling the sub is something like this (untested)

Re: Some imc questions

2004-01-11 Thread Leopold Toetsch
Harry Jackson <[EMAIL PROTECTED]> wrote: > Commanlib.imc is where I will build an array to contain all the subs to > call. >1 .local PerlArray Command >2 Command = new PerlArray >3 >4 Command[0] = PQCONNECTSTART I'd toss that part that generateds the command array

Some imc questions

2004-01-10 Thread Harry Jackson
I am trying to create an array of global functions from the postgres library mainly to ease passing parameters amongst other things. I have snipped some repetitive code out. I am sure that there are a few errors in the way I am using imc so any corrections or pointers would be much appreciated,