From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.66.220.163 with SMTP id px3mr6817152pac.38.1384670618098; Sat, 16 Nov 2013 22:43:38 -0800 (PST) X-Received: by 10.49.94.116 with SMTP id db20mr4814qeb.19.1384670618031; Sat, 16 Nov 2013 22:43:38 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!news.linkpendium.com!news.linkpendium.com!news.snarked.org!newsfeed.news.ucla.edu!usenet.stanford.edu!z6no9496095pbz.1!news-out.google.com!9ni33120qaf.0!nntp.google.com!i2no3714025qav.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sat, 16 Nov 2013 22:43:37 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=109.120.25.138; posting-account=6GI17woAAACzaU4npPx-Wjpke4_Fq0uj NNTP-Posting-Host: 109.120.25.138 References: <86e3a757-5cc2-4ea6-92f1-8b7ce369a5f2@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: Ada Spreadsheet output From: Serge Mosin Injection-Date: Sun, 17 Nov 2013 06:43:38 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Xref: news.eternal-september.org comp.lang.ada:17701 Date: 2013-11-16T22:43:37-08:00 List-Id: On Sunday, November 17, 2013 12:44:14 PM UTC+7, Jeffrey Carter wrote: > On 11/16/2013 09:45 PM, Serge Mosin wrote: >=20 > > Hello, guys. >=20 > > I wish to know, if there are some Ada libraries for spreadsheet output,= preferably OpenOffice. I mean the ability to create a spreadsheet file and= write there/read it from the Ada program. The method should be fast enough= , because big amount of data is supposed to be transferred, so launching Op= enOffice and controlling output through it is not the solution. >=20 >=20 >=20 > There's Excel Writer for output: >=20 >=20 >=20 > http://excel-writer.sourceforge.net/ >=20 >=20 >=20 > I'm not aware of anything for OpenOffice, nor for reading Excel files. Th= is=20 >=20 > thread from 2004 >=20 >=20 >=20 > http://coding.derkeiler.com/Archive/Ada/comp.lang.ada/2004-10/0299.html >=20 >=20 >=20 > suggests using ODBC to read Excel files. >=20 >=20 >=20 > --=20 >=20 > Jeff Carter >=20 > "Death awaits you all, with nasty, big, pointy teeth!" >=20 > Monty Python & the Holy Grail >=20 > 20 Thanks for the reply, Jeffrey. MS Excel is not preferred and ODBC usage is = probably possible only with simple structured spreadsheet tables (key-value= ones), but I have a very complex type of structure, so it seems that I nee= d to find a solution by myself. Thanks anyways!