Re: [sqlite] What is the advantage of using native c API over ODBC

2009-01-26 Thread MikeW
goldy  writes:

> 
> Hi All,
> 
> What are the basic advantage of using SQLite with C API over ODBC.

Whereas the advantage of ODBC is having the same(?) interface to
different database systems.

Horses for courses ...

MikeW


___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] What is the advantage of using native c API over ODBC

2009-01-23 Thread John Stanton
You avoid an unecessary layer of software and have better control over 
the database.

goldy wrote:
> Hi All,
>
> What are the basic advantage of using SQLite with C API over ODBC.
> ___
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>   

___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] What is the advantage of using native c API over ODBC

2009-01-23 Thread Michael Knigge
> Hi All,
> What are the basic advantage of using SQLite with C API over ODBC.

1. Better Performance.

2. You can use SQLite Features that are not "mappable" to the ODBC-API.

3. You don't have to worry if there are Bugs in the ODBC-Driver.

4. No need to install the ODBC-Driver to let your Application run

5. You can use the latest SQLite release ando don't have to wait until 
the author of the ODBC driver releases a new version.



bye,
Michael
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users