RE: AW: [sqlite] VB6 question

2005-08-01 Thread RAY BORROR
05:22 To: sqlite-users@sqlite.org Subject: Re: AW: [sqlite] VB6 question I am using SQLite Plus sucessfully Ray Borror Gregory Letellier wrote: all the wrapper ar for 2.8 and i wan't use the 3.0 anyone known 3.0 wrapper ? Steve O'Hara a écrit : >Don't want to dampen your enthusiasm for t

RE: AW: [sqlite] VB6 question

2005-07-29 Thread Steve O'Hara
How does a C++ wrapper help someone using VB6? Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] rg]On Behalf Of RAY BORROR Sent: 29 July 2005 05:22 To: sqlite-users@sqlite.org Subject: Re: AW: [sqlite] VB6 question I am using SQLite Plus sucessfully Ray

Re: AW: [sqlite] VB6 question

2005-07-28 Thread RAY BORROR
to resort to some OS calls to unravel that). > >Use one of the wrappers. > >Steve > > > > > > >-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] >rg]On Behalf Of Gregory Letellier >Sent: 27 July 2005 11:17 >To: sqlite-users@

RE: AW: [sqlite] VB6 question

2005-07-28 Thread Steve O'Hara
for the DLL I'll send it anyone that's interested. Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] rg]On Behalf Of Gregory Letellier Sent: 28 July 2005 13:02 To: sqlite-users@sqlite.org Subject: Re: AW: [sqlite] VB6 question all the wrapper ar for 2.8 and i wan't use

Re: AW: [sqlite] VB6 question

2005-07-28 Thread Gregory Letellier
PROTECTED] [mailto:[EMAIL PROTECTED] rg]On Behalf Of Gregory Letellier Sent: 27 July 2005 11:17 To: sqlite-users@sqlite.org Subject: Re: AW: [sqlite] VB6 question Ok Thank's for your help i will trying this !!! [EMAIL PROTECTED] a écrit : Hi, unfortunately this has to do with the C calling

RE: AW: [sqlite] VB6 question

2005-07-28 Thread Steve O'Hara
-users@sqlite.org Subject: Re: AW: [sqlite] VB6 question Ok Thank's for your help i will trying this !!! [EMAIL PROTECTED] a écrit : >Hi, > >unfortunately this has to do with the C calling convention used by sqlite3.dll. By default DLLs compiled with C have the cdecl calling conventio

Re: AW: [sqlite] VB6 question

2005-07-27 Thread Gregory Letellier
Ok Thank's for your help i will trying this !!! [EMAIL PROTECTED] a écrit : Hi, unfortunately this has to do with the C calling convention used by sqlite3.dll. By default DLLs compiled with C have the cdecl calling convention, but VB only supports the stdcall calling convention. You must

AW: [sqlite] VB6 question

2005-07-27 Thread michael . ruck
Hi, unfortunately this has to do with the C calling convention used by sqlite3.dll. By default DLLs compiled with C have the cdecl calling convention, but VB only supports the stdcall calling convention. You must recompile sqlite using MS Visual C++ or other compiler and switch the default

[sqlite] VB6 question

2005-07-27 Thread Gregory Letellier
hello i'm trying to open a database with VB6 without wrapper i'm using sqlite3.dll and it's my code : Option Explicit Private Declare Function sqlite3_open Lib "sqlite3.dll" (ByVal filename As String, ByRef dbHandle As Long) As Long Private Declare Function sqlite3_open16 Lib "sqlite3.dll"