Re: [U2] Quick Poll - N-tier Architecture

2010-04-12 Thread Brutzman, Bill
We just got started with Adobe ColdFusion and Adobe FlashBuilder 4. ColdFusion is Java-based, has JEE built-in and now includes Hibernate ORM. It is easy to connect to UniVerse and to the other SQL databases that we have here. FlashBuilder<--> CF9 <--> UniVerse B

[U2] import data to excel sheet...

2010-04-12 Thread Jaweed
Can anyone tell me what is wrong with the following code for importing data from txt file to an excel sheet, when its launch Excel it giving some error message, but when I open the downloaded file from my disc, all the data is in one line with some especial Chars. Any help will be appreciated.

[U2] Looking for a Job.....

2010-04-12 Thread Jaweed
Hi everyone, I have around 9yrs of experience on Unidata, Pick Basic, Unibasic, Redback and other technologies like ASP.Net, C# and XML. I am currently leading a offshore team in India and now looking for a change. I am looking a job near Dallas, Texas. Thanks Jaweed _

Re: [U2] import data to excel sheet...

2010-04-12 Thread Robert Houben
Hi Jaweed, I haven't looked too closely at your code, but I did notice on thing that I would consider the most likely candidate: CHAR(13) is a carriage return, not a line feed. Try using CHAR(10) instead for your LINE.FEED variable. You might have to use CHAR(13):CHAR(10), but I think CHAR(10

Re: [U2] import data to excel sheet...

2010-04-12 Thread Chris Austin
CSV.FILE.NAME = 'c:\\testCSV.csv' OPENSEQ CSV.FILE.NAME TO CSV.FILE THEN WEOFSEQ CSV.FILE CSV.REC := 'data1, data2, data3':CHAR(13) WRITESEQ CSV.REC TO CSV.FILE THEN NULL The above is a really easy way to write to a CSV file. Maybe you want to get a simple read from the txt and write to the CSV

Re: [U2] import data to excel sheet...

2010-04-12 Thread Jaweed
Hey Robert Houben, It worked!!! You are the man, thanks for the help. Jaweed -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Robert Houben Sent: Monday, April 12, 2010 11:01 AM To: U2 Users List Subject: Re: [U2] i

Re: [U2] import data to excel sheet...

2010-04-12 Thread Robert Houben
Always glad to help! :) -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jaweed Sent: Monday, April 12, 2010 9:23 AM To: 'U2 Users List' Subject: Re: [U2] import data to excel sheet... Hey Robert Houben, It worked!!

Re: [U2] Quick poll - how many use 3-tier or N-tier Architecture

2010-04-12 Thread John Hester
a. yes b. yes (judging by other responses, we may be the only ones) c. n/a d. If you mean a java GUI running on the client, then no. Everything we've done so far has used a browser as the UI. e. n/a f. n/a -John -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-use

[U2] Hosting UniVerse

2010-04-12 Thread Bryan Evans
Does anyone use an outside company to host their UniVerse or UniData database? If so, have you been happy with the results? I am looking at the feasibility of having another company host our hardware (HPUX) and UniVerse install. Thanks, Bryan Evans __

Re: [U2] import data to excel sheet...

2010-04-12 Thread Jacques G.
Hi Jaweed, If you already produced a number of files with the CHAR(13) as the end of line separator, you probably still handle them with excel, if you change the file extension from .csv to .txt and when you are in Excel import wizard, specify that the origin of the file is "Macintosh".Sinc

Re: [U2] Hosting UniVerse

2010-04-12 Thread Brutzman, Bill
Consider www.SierraBravo.com. --Bill ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] Quick poll - how many use 3-tier or N-tier Architecture

2010-04-12 Thread Ben Souther
On Apr 12, 2010, at 12:48 PM, John Hester wrote: > > a. How many have a middle-tier application server? Yes > b. How many use IBM Websphere? No > c. How many use some other? Please give product name if you can. We use Tomcat http://tomcat.apache.org It's free as in choice and a

Re: [U2] Quick poll - how many use 3-tier or N-tier Architecture

2010-04-12 Thread Graham, Dave
Just saw this... A. It'll be in the next release (3rd 1/4 of the year) B. No C. No D. Currently a custom written Delphi app (thin client sorta thing) Moving to .NET client (again 3rd 1/4 of the year) that is slightly 'thicker' E. See 'D' above - mostly C# for .NET with some VB for .NET purchased c

Re: [U2] Quick Poll - N-tier Architecture

2010-04-12 Thread Tony Gravagno
Bill, I'd think ColdFusion is an unnecessary tier between Flash and U2. Why not just use web service calls to a middle tier and broker those to Universe? That's what people do with MySQL and other databases. With that you can use whatever comms mechanism you wish, including UO.NET or UOJ. Since

Re: [U2] import data to excel sheet...

2010-04-12 Thread jpb-u2ug
This is a function of the operating system. On Unix systems only a linefeed character is added to the end of a line whereas on Windows both carriage return and linefeed characters are added to the end of a line. If you open a file created on a Unix system with the notepad app it will have one line