see thats a pretty big misconception amunst this community
anyway....SQL ANywhere is a COMPLETELY differnt database then ASE
which ahs a way different c library....or so I believe so far...The C
API for SQL Anywhere is by using ESQL (Embedded SQL) which is really
nice and easy to use and compile with C++.NET
The process is taking your C code with the ESQL inside, run the SQL
preprocessor which translates everything into c++ code then obj
then .exe as a normal c++ app. This is all easily done through nmake
(make files for windows!:D) All SQL statements including ESQL
statements can be found here:
http://www.ianywhere.com/developer/
product_manuals/sqlanywhere/1000/en/html/dbrfen10/rf-syss.html
On Jan 18, 2:40 pm, "John Sheets" <
metac...@gmail.com> wrote:
> On Jan 18, 2008 10:59 AM,
Bryan.Lahartin...@gmail.com <
>
>
Bryan.Lahartin...@gmail.com> wrote:
>
> > I am currently working for Sybase iAnywhere and we are looking to
> > support a SQLAnywhere driver for the RoR community.
>
> Great news!
>
> > We were looking at
> > possibly trying to create one from scratch and details on hwo to go
> > about doing that have been a little sketchy at best. Can you John, or
> > anyone else , descripe in a few paragraphs how exactly this process is
> > to be done either using a C implementation (which is preffered) or
> > using DBI?
>
> All I know is that the low level Sybase driver was already done by someone
> else (
http://raa.ruby-lang.org/project/sybase-ctlib/). It's pretty cryptic,