Re: [sqlite] Fw: What languages can include SQLite statically?

2010-05-21 Thread Gilles Ganault
On Fri, 21 May 2010 14:46:50 +0200, "A.J.Millan"
 wrote:
>Some time ago I used DevC++ with SQLite (it is a Ligth API that uses the GNU 
>tool chain), but if your planned target is M$, the definitive choice is 
>Visual Studio Express.

OK, I'll try to install MS VS Express on a test host.

Thanks everyone.

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


Re: [sqlite] Fw: What languages can include SQLite statically?

2010-05-21 Thread A.J.Millan

>
> Is MS Visual Studio the recommended solution to compile present-day
> SQLite, or are there lighter, open-source compilers that I could use
> instead?
>

Some time ago I used DevC++ with SQLite (it is a Ligth API that uses the GNU 
tool chain), but if your planned target is M$, the definitive choice is 
Visual Studio Express.

A.J.Millan

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


Re: [sqlite] Fw: What languages can include SQLite statically?

2010-05-21 Thread Black, Michael (IS)
Hopefully my last comment on this.
 
I've been using Code::Blocks because it is cross-platform.  I develop under 
Windows and deploy under Linux.  It can also do 64-bit (takes some tweaking to 
do 64-bit on Windows).
 
MS Visual Studio Express cannot do cross-platform, or 64-bit.
 
Michael D. Black
Senior Scientist
Northrop Grumman Mission Systems
 



From: sqlite-users-boun...@sqlite.org on behalf of Black, Michael (IS)
Sent: Fri 5/21/2010 7:30 AM
To: General Discussion of SQLite Database
Subject: Re: [sqlite] Fw: What languages can include SQLite statically?



MS Visual Studio Express should work just fine.
If you're used to MS products.

Michael D. Black
Senior Scientist
Northrop Grumman Mission Systems




From: sqlite-users-boun...@sqlite.org on behalf of Gilles Ganault
Sent: Fri 5/21/2010 7:26 AM
To: sqlite-users@sqlite.org
Subject: Re: [sqlite] Fw: What languages can include SQLite statically?



On Fri, 21 May 2010 14:23:04 +0200, "A.J.Millan"
 wrote:
>Due the fact that you already know C and as my 2 cents to the question,
>depending on your requirements, perhaps would have a look to PHP.
>
>As far as I know, you can use directly SQLite from that language and perhaps
>you find it simple to use; easy to port between platforms and direct and
>easy to debug.

Thanks but I'd like to pack the main application and SQLite into a
single executable, so languages like Python, PHP, etc. aren't good
solutions.

Is MS Visual Studio the recommended solution to compile present-day
SQLite, or are there lighter, open-source compilers that I could use
instead?

___
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] Fw: What languages can include SQLite statically?

2010-05-21 Thread Jean-Denis Muys
I use Xcode, which is a front end to either clang or gcc. But I usually
don't compile SQLite myself as it's a standard part of the OS. I link my
code, written in Objective-C, compiled with either compiler, with the
OS-provided libraries.

The result is a native application. No muss no fuss.

Jean-Denis



On 5/21/10 14:26 , "Gilles Ganault"  wrote:

> On Fri, 21 May 2010 14:23:04 +0200, "A.J.Millan"
>  wrote:
>> Due the fact that you already know C and as my 2 cents to the question,
>> depending on your requirements, perhaps would have a look to PHP.
>> 
>> As far as I know, you can use directly SQLite from that language and perhaps
>> you find it simple to use; easy to port between platforms and direct and
>> easy to debug.
> 
> Thanks but I'd like to pack the main application and SQLite into a
> single executable, so languages like Python, PHP, etc. aren't good
> solutions.
> 
> Is MS Visual Studio the recommended solution to compile present-day
> SQLite, or are there lighter, open-source compilers that I could use
> instead?
> 
> ___
> 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] Fw: What languages can include SQLite statically?

2010-05-21 Thread Black, Michael (IS)
MS Visual Studio Express should work just fine.
If you're used to MS products.
 
Michael D. Black
Senior Scientist
Northrop Grumman Mission Systems
 



From: sqlite-users-boun...@sqlite.org on behalf of Gilles Ganault
Sent: Fri 5/21/2010 7:26 AM
To: sqlite-users@sqlite.org
Subject: Re: [sqlite] Fw: What languages can include SQLite statically?



On Fri, 21 May 2010 14:23:04 +0200, "A.J.Millan"
 wrote:
>Due the fact that you already know C and as my 2 cents to the question,
>depending on your requirements, perhaps would have a look to PHP.
>
>As far as I know, you can use directly SQLite from that language and perhaps
>you find it simple to use; easy to port between platforms and direct and
>easy to debug.

Thanks but I'd like to pack the main application and SQLite into a
single executable, so languages like Python, PHP, etc. aren't good
solutions.

Is MS Visual Studio the recommended solution to compile present-day
SQLite, or are there lighter, open-source compilers that I could use
instead?

___
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] Fw: What languages can include SQLite statically?

2010-05-21 Thread Gilles Ganault
On Fri, 21 May 2010 14:23:04 +0200, "A.J.Millan"
 wrote:
>Due the fact that you already know C and as my 2 cents to the question, 
>depending on your requirements, perhaps would have a look to PHP.
>
>As far as I know, you can use directly SQLite from that language and perhaps 
>you find it simple to use; easy to port between platforms and direct and 
>easy to debug.

Thanks but I'd like to pack the main application and SQLite into a
single executable, so languages like Python, PHP, etc. aren't good
solutions.

Is MS Visual Studio the recommended solution to compile present-day
SQLite, or are there lighter, open-source compilers that I could use
instead?

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


[sqlite] Fw: What languages can include SQLite statically?

2010-05-21 Thread A.J.Millan
Due the fact that you already know C and as my 2 cents to the question, 
depending on your requirements, perhaps would have a look to PHP.

As far as I know, you can use directly SQLite from that language and perhaps 
you find it simple to use; easy to port between platforms and direct and 
easy to debug.

HTH

A.J.Millan

- Original Message - 
From: "Gilles Ganault" 
To: 
Sent: Friday, May 21, 2010 11:31 AM
Subject: [sqlite] What languages can include SQLite statically?


> Hello
>
> My C skills are very basic. I was wondering: After compiling SQLite
> into an .OBJ or .LIB file, what languages can be used to include this
> output into a main program, so we end up with a single EXE.
>
> I assume we have the choice of:
> - C
> - C++
> - Delphi (?)
> - Other?
>
> Thank you.
>
> ___
> 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