I really appreciate your comments.
Fortunately I have a spare pc that I am not using very
much right now. It has windows 98.
I have been very hesitant at putting apache or similar
on it b/c of the learning curve thing.
It looks like I am headed that direction though.
What about "renting space
Thanks for the help with sort. Anyone aware of a module to connect to a
remote host over the old DECnet LAT protocol? cpan yielded no matches but I
thought maybe there was something out there...
> -Original Message-
> From: Peter Eisengrein [mailto:[EMAIL PROTECTED]]
> Sent: Thursday,
> My concern is if you've never used Unix (or Linux) before then a do it
> yourself learning curve can take a while, but There are many,many,many
> people out there who will help you out, and Many people
> learnt Unix without
> anything else but a good book and a Jump in the deep end!
> Just
My advise is run a linux machine with an Apache webserver and use Mod_Perl.
How scalable do you want it? How scalable does it really need to be? How
about security?
I have worked for two different companies in the last 5 years.the first used
HP-UX and Sun Solaris and the latter Linux. I would go
> I guess i will have to look into PostgreSQL.
>
> I would be willing to learn another operating system
> if it would get the job done & is stable. B/c I am in
> the intial stages of developing a website.
Hey, I just found this:
http://www.ejip.net/faq/postgresql_win_setup_faq.jsp
It looks c
MSDE is MS SQL Server with a few key differences:
1. no GUI administration tools
2. maximum database size (2 GB?)
3. maximum concurrent connections (10?)
4. doesn't support automated backups (fixed in version 7 SP2)
I'm not 100% certain of the figures for #2 and 3, but MSDE is really meant
for d
> -Original Message-
> Behalf Of Peter Eisengrein
>
> This is probably really easy but I couldn't find it in the docs. I have a
> multicolumn list that has between 5000-6000 lines and looks something like
> this:
>
> 47 3950 0 Y Y N N OOSM
Thanks for the comments.
yes I am currently on windows platform.
The 255 length is for the varchar type.
I guess i will have to look into PostgreSQL.
I would be willing to learn another operating system
if it would get the job done & is stable. B/c I am in
the intial stages of developing a we
Just parse each line ($a and $b) within your sort subroutine, e.g.:
#!/usr/bin/perl
sub sorter {
my (@a,@b);
@a = split(/\s+/,$a);
@b = split(/\s+/,$b);
@a[1] <=> @b[1];
}
@lines = <>;
print sort sorter @lines;
-Jonathan
At 11:32 AM 1/3/2002, Peter Eisengrein wrote:
>This is probab
>
>
> Currently I am basically set up to use perl and an
> access db. But I understand that access has a limited
> simultaneous user support. I guess a person could set
> up several databases with different dsns & perl
> conditionals, but that would double and triple space
> on a server.
>
> I a
You can write your own procedure to sort data however you want. perldoc -f sort
should give you a start. Supposing that you have this stored as an array of
references to an array, you could do something like
sort { $::a->[1] cmp $::b->[1] } @data
which would sort on the second column.
HTH,
Ri
This is probably really easy but I couldn't find it in the docs. I have a
multicolumn list that has between 5000-6000 lines and looks something like
this:
47 3950 0 Y Y N N OOSM
70 1131 1 N Y N N LKD
Check out
http://www.borland.com/devsupport/interbase/opensource/#interbase
You can still pay $$ for 5.5 or 6.5 if you want official support. I used
the MPL'd 6.01 extensively several months ago as an intermediate step while
migrating a large application off of Interbase 5.5 to Informix and it
> Have I missed something, i.e. does the MainLoop() function
> not work if your
> main code is inside a sub main?, or is this because nobody
> has built a huge
> script yet using TK?
You don't have to use global variables unless you want to. I myself prefer
to pass lexically scoped variables i
Another question:-)
All the examples I've come across so far for Perl/TK All seem to use global
variables like there's no tomorrow? (i.e. A variable is declared inside the
MainLoop() portion and then all the callbacks edit or manipulate that
Variable. Why doesn't this variable get passed to the C
> -Original Message-
> Behalf Of Simon Oliver
>
> Is Interbase free? I thought this was Borlands premier DBMS?
>
Briefing looking at the license I believe so.
http://www.borland.com/devsupport/interbase/opensource/
The license looks similar to other open source licenses that I have
Currently I am basically set up to use perl and an
access db. But I understand that access has a limited
simultaneous user support. I guess a person could set
up several databases with different dsns & perl
conditionals, but that would double and triple space
on a server.
I am considering mysq
> BTW, this is not directed against MySQL in any way. I use
> MySQL as well,
> and I like it. It is a great database, but it is NOT the only great
> database around!
>
> Just my 2 (Euro-)cents.
Well, what I'm about to say IS directed at MySQL. I don't understand why
everyone is so enamored wit
SAP DB is indeed great and very much underused in my view. It's really
robust, it's got a very good SQL implementation plus good interfaces, it
scales well, and unless you have a madly growing or otherwise extremely
troublesome database it can run stably without any maintenance at all for
years on
> > enjoying perl but am finding roadblocks as I learn from the books.
> RTFM
I assume that Simon is using the polite version of this acronym, which in
this case would be:
Read The Fine Manpages
Andrew, perldoc can be a good friend, especially considering that it seems
ActiveState has decided t
> I wish to make some scrolling text fade in and out between
> two particvular
> colours (Red & White in this example).
> Using the Repeat function I'm able to update the Scrolling text of my
> window, but not the colour itself. Any ideas how to go about this?
> Do I have to Recreate (repack?) t
The HTML version of the Config::IniFiles docs was downloaded and placed in
the appropriate directory.
Bo
> You can obtain documentation in HTML format a separate download from
> Activestate.
> It's here:
>
> http://downloads.activestate.com/ActivePerl/src/5.6/AP630_html.zip
>
> MaT
>
> > Insta
I am sorry if this is getting posted twice
- I had problems with my computer last night and am not sure what was sent and
what never made it...
Again - patience for a beginner would be
appreciated - I think I am getting the picture though
I saw the messages from Floyd R
> Hi All
>
> Is there anything within the Tk GUI that can be used to pick a
> Directory and Files within that Directory?
>
Yes, try Tk::getOpenFile which uses the native Win32 file picker on Windows.
There's also a directory picker called Tk::DirSelect which has a custom
interface for pic
24 matches
Mail list logo