Re: [sqlite] C# amalgamation hand holding requested

2012-01-25 Thread Don V Nielsen
rg] > on behalf of Don V Nielsen [donvniel...@gmail.com] > > Sent: Tuesday, January 24, 2012 9:39 AM > > To: General Discussion of SQLite Database > > Subject: EXT :Re: [sqlite] C# amalgamation hand holding requested > > > > Ok. So I am doing things correctly. I am

Re: [sqlite] C# amalgamation hand holding requested

2012-01-24 Thread Roosevelt Anderson
s > > > From: sqlite-users-boun...@sqlite.org [sqlite-users-boun...@sqlite.org] on > behalf of Roosevelt Anderson [roosevelt.ander...@gmail.com] > Sent: Tuesday, January 24, 2012 10:22 AM > To: General Discussion of SQLite Database > Subject: EXT

Re: [sqlite] C# amalgamation hand holding requested

2012-01-24 Thread Black, Michael (IS)
t Anderson [roosevelt.ander...@gmail.com] Sent: Tuesday, January 24, 2012 10:22 AM To: General Discussion of SQLite Database Subject: EXT :Re: [sqlite] C# amalgamation hand holding requested This is .NET development not regular Windows development. The .NET application most of the time will use the

Re: [sqlite] C# amalgamation hand holding requested

2012-01-24 Thread Roosevelt Anderson
_ > From: sqlite-users-boun...@sqlite.org [sqlite-users-boun...@sqlite.org] on > behalf of Don V Nielsen [donvniel...@gmail.com] > Sent: Tuesday, January 24, 2012 9:39 AM > To: General Discussion of SQLite Database > Subject: EXT :Re: [sqlite] C# amalgamation hand holdi

Re: [sqlite] C# amalgamation hand holding requested

2012-01-24 Thread Black, Michael (IS)
neral Discussion of SQLite Database Subject: EXT :Re: [sqlite] C# amalgamation hand holding requested Ok. So I am doing things correctly. I am already doing things correctly. I am using the provided .NET dll. I copy it to my local project. And when that project moves to production, it will be i

Re: [sqlite] C# amalgamation hand holding requested

2012-01-24 Thread Don V Nielsen
Ok. So I am doing things correctly. I am already doing things correctly. I am using the provided .NET dll. I copy it to my local project. And when that project moves to production, it will be in the project's .bin folder. I should not have to worry about the dll hell associated with HP and Qu

Re: [sqlite] C# amalgamation hand holding requested

2012-01-23 Thread Simon Slavin
On 23 Jan 2012, at 7:39pm, Roosevelt Anderson wrote: > The C# compiler does not compile C. C# and VB.NET get compiled down to > bytecode. > > On Mon, Jan 23, 2012 at 12:56 PM, Simon Slavin wrote: >> >> On 23 Jan 2012, at 4:39pm, Roosevelt Anderson wrote: >> >>> You can't use the amalgamation

Re: [sqlite] C# amalgamation hand holding requested

2012-01-23 Thread Roosevelt Anderson
The C# compiler does not compile C. C# and VB.NET get compiled down to bytecode. On Mon, Jan 23, 2012 at 12:56 PM, Simon Slavin wrote: > > On 23 Jan 2012, at 4:39pm, Roosevelt Anderson wrote: > >> You can't use the amalgamation directly in C# as the SQLite >> amalgamation is in C. > > Can you not

Re: [sqlite] C# amalgamation hand holding requested

2012-01-23 Thread Simon Slavin
On 23 Jan 2012, at 4:39pm, Roosevelt Anderson wrote: > You can't use the amalgamation directly in C# as the SQLite > amalgamation is in C. Can you not simply tell your compiler that '.c' files are C and not C# ? That's what you do with Objective-C. Or do C# compilers not compile C ? Simon. _

Re: [sqlite] C# amalgamation hand holding requested

2012-01-23 Thread Roosevelt Anderson
You can't use the amalgamation directly in C# as the SQLite amalgamation is in C. To use the amalgamation you'd have to compile the code in a separate C/C++ project, create a wrapper class using P/Invoke and then call it from your application. You should use the .NET data provider found here http:/

Re: [sqlite] C# amalgamation hand holding requested

2012-01-23 Thread Jean-Denis MUYS
On 23 janv. 2012, at 11:18, Simon Slavin wrote: > > On 23 Jan 2012, at 8:59am, Jean-Denis MUYS wrote: > >> I am a Mac developer, and I haven't even tried to look for such >> documentation on Xcode. This is because the steps to follow couldn't be more >> obvious. Here they are: >> >> Step 1:

Re: [sqlite] C# amalgamation hand holding requested

2012-01-23 Thread Simon Slavin
On 23 Jan 2012, at 8:59am, Jean-Denis MUYS wrote: > I am a Mac developer, and I haven't even tried to look for such documentation > on Xcode. This is because the steps to follow couldn't be more obvious. Here > they are: > > Step 1: drag and drop the amalgamation files to your Xcode project >

Re: [sqlite] C# amalgamation hand holding requested

2012-01-23 Thread Jean-Denis MUYS
On 20 janv. 2012, at 18:08, Simon Slavin wrote: > > On 20 Jan 2012, at 3:42pm, Don V Nielsen wrote: > >> Recent conversations by users has >> convinced me that I would be better off using the amalgamation file >> instead. However, I don't know what steps in VS to do to specify the >> source an

Re: [sqlite] C# amalgamation hand holding requested

2012-01-20 Thread Simon Slavin
On 20 Jan 2012, at 3:42pm, Don V Nielsen wrote: > Recent conversations by users has > convinced me that I would be better off using the amalgamation file > instead. However, I don't know what steps in VS to do to specify the > source and header files so that it compiles into my application. > >

[sqlite] C# amalgamation hand holding requested

2012-01-20 Thread Don V Nielsen
I need help using the amalgamation in my projects. I simply do not know what steps to take in VS to implement it. I have some fairly elaborate projects that I have been redeveloping to use sqlite instead of .net structure and memory functions. One project is complete, but it uses the sqlite dll.