Re: Witango-Talk: Multiple windows opened

2004-04-14 Thread [EMAIL PROTECTED]
Open a new Windows from a .taf-File an paste this into the html-Result. For security reason some Browser's don't accept anymore to open a content from a another site in a new (or targeted) Window. SCRIPT LANGUAGE=Javascript1.2 !-- Hide from JavaScript-Impaired Browsers

Re: Witango-Talk: Witango 5.5 and Dreamweaver MX 2004

2004-04-14 Thread Dale Graham
Oh, yeah, I forgot about that one. Phil suggested that essential change. Now why a change to an ORACLE library path would make a difference to a Macromedia HTML editor (or graphics program), I haven't a clue. But it does. At the Witango training, Phil suggested (for those of you who do not

RE: Witango-Talk: Import CSV

2004-04-14 Thread Ted Wolfley
Hi, Does the database that you are importing to able to import CSV format? Have you tried just uploading file as is then automate the database import? Ted -Original Message- From: Wayne Irvine [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 14, 2004 1:28 AM To: [EMAIL PROTECTED]

Re: Witango-Talk: Witango 5.5 and Dreamweaver MX 2004

2004-04-14 Thread Stephen Su
thanks a bunch! On Apr 14, 2004, at 6:54 AM, Dale Graham wrote: Oh, yeah, I forgot about that one. Phil suggested that essential change. Now why a change to an ORACLE library path would make a difference to a Macromedia HTML editor (or graphics program), I haven't a clue. But it does. At

Witango-Talk: Please help

2004-04-14 Thread Murugapiran
Hi, I get the following error Position: Branch_To_Run_Script Class: Internal Main Error Number: -502 Please can anyone tell me what this error can be due to. Thanks, Murugapiran Natan. TO

Witango-Talk: XML Structure

2004-04-14 Thread Bryan Hughes
How would I go about getting the path location of a node within an XML document. For example, I would know the id attribute of the node I was searching for and want to be able to get the path information. xml node ID=1 node ID=52 / node ID=8237

Witango-Talk: sql server column reference

2004-04-14 Thread Ted Wolfley
Title: Message Hi, Just wondering if anyone knew why sometimes the column references in search actions have the dbo. prefix and other times the columns references don't. Ted Wolfley Database/Internet Programmer The Ogden Group of Rochester phone: (585) 321 1060 x23 fax: (585) 321 0043

Re: Witango-Talk: Import CSV

2004-04-14 Thread Chris Millet
Run an external action to a shell script. Here is the sql (MySQL) syntax I use. This gets run all the time for doing exactly what you are describing. It works like a charm. Even if you're not using MySQL, you should be able to accomplish the same thing with another database. LOAD DATA

Erratum: Re: Witango-Talk: Import CSV

2004-04-14 Thread Chris Millet
REPLACE will not wipe out any existing data, as I stated below, only duplicate data. If you want to wipe out all data you will need to run something like DELETE FROM tablename prior to running load data infile. This WILL wipe out the data in your table in a flash, and I do recommend running a

Witango-Talk: data sources

2004-04-14 Thread Alan Wolfe
hello, I was wondering, when you do a @DATASOURCESTATUS and it lists different data sources along with the user ref they were spawned under (right?), i see multiple datasources but not a datasource for each user ref who used that datasource. Meaning...in the course of the day if we have 150

Witango-Talk: Decision Tree / establishing choice from multiple criteria

2004-04-14 Thread Nicholas Froome
I want to build a system to help buyers match their requirements to cars we have in stock or have located. Typical inputs might be the number of miles they drive per year (10k, 10-20K, 20K, etc), the number of seats they need (5 or 7) and their budget (price bands) Bearing in mind that there

Witango-Talk: Witango 5.0

2004-04-14 Thread Chuck Lockwood
My client just installed .065 over .062 and they are now getting a Client/Plug in error. The remedy in the docs doesnt seem to fix it. Anybody know where to look? Chuck Lockwood LockData Technologies, Inc. 309 Main Avenue, Hawley, Pa 18428

RE: Witango-Talk: Witango 5.0

2004-04-14 Thread Robert Shubert
Both the server and the client must be the same version. -Original Message- From: Chuck Lockwood [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 14, 2004 2:57 PM To: WiTango-Talk Subject: Witango-Talk: Witango 5.0 My client just installed .065 over .062 and they are now

RE: Witango-Talk: data sources

2004-04-14 Thread Robert Shubert
You are correct that it opens new connections when all existing connections are busy. The trick is defining 'busy'. It can be the case, due to the internal threading of Witango, that more or less connections will be opened then you might guess. For the most part, a constantly hit site will always

Witango-Talk: @email what am i doing wrong?

2004-04-14 Thread Alan Wolfe
following the docs ive gotten some code to be able to connect to a mail serevr and check for new messages. i got it working where it can say "4 new messages", but when i start trying to retrieve the message data, im hitting an error and cant figure out what the problem is. I've attached

Re: Witango-Talk: data sources

2004-04-14 Thread Alan Wolfe
ahh thank you. we had problems with low data source timeouts a little while back, we might try shortening them up again. - Original Message - From: Robert Shubert [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 14, 2004 12:39 PM Subject: RE: Witango-Talk: data sources

Re: Witango-Talk: Import CSV

2004-04-14 Thread Wayne Irvine
Does the database that you are importing to able to import CSV format? Have you tried just uploading file as is then automate the database import? I'm not directly importing to the database. The database contains all sorts of product information. The data file is product code, current stock

RE: Witango-Talk: Import CSV

2004-04-14 Thread Chris Smith - Comcast Acct
I would load csv into temp table. that way you can loop and use the data from the temp table for inserts into the product table more efficiently you could then empty the temp table after the action is performed. csmith -Original Message- From: Wayne Irvine [mailto:[EMAIL PROTECTED] Sent:

Re: Witango-Talk: Import CSV

2004-04-14 Thread Alan Wolfe
heres a simple way to get csv data into a witango array: @assign user$csvdata value=@array cols=2 value='@arg csvdata' rdelim='@crlf' cdelim=',' dunno if that helps any, just tossing it out hoping that it does - Original Message - From: Chris Smith - Comcast Acct [EMAIL PROTECTED] To:

Re: Witango-Talk: Import CSV

2004-04-14 Thread Wayne Irvine
I would load csv into temp table. Do you mean a temporary table in the database or an array in Tango. If the former, then it means having another table (or database file in FileMaker) and using a script to import the file (stops the db server whilst executing), then doing a number of searches,

Re: Witango-Talk: Import CSV

2004-04-14 Thread Wayne Irvine
heres a simple way to get csv data into a witango array: @assign user$csvdata value=@array cols=2 value='@arg csvdata' rdelim='@crlf' cdelim=',' dunno if that helps any, just tossing it out hoping that it does That doesn't address the issue of fields containing commas which is the sole

RE: Witango-Talk: Import CSV

2004-04-14 Thread Chris Smith - Comcast Acct
yes I was speaking of loading into the database. I most often use MySql or Oracle some MS-SQL these have no issues with the increased activity. My Database boxes are bigger than app servers and prefer to place task load there when possible and practical. Was not aware of File Maker limitations.