> In the amount of time that you've spent asking for an import
> library on this list you could have written all of the imports.

If you say so. Thanks in any case.

RBS

-----Original Message-----
From: Clay Dowling [mailto:[EMAIL PROTECTED] 
Sent: 28 November 2006 21:39
To: sqlite-users@sqlite.org
Subject: RE: [sqlite] C++ SQLite


RB Smissaert said:
> You might be right, but with the Win32 API you have loads of nice
> documents/programs (I like the API guide from KPD) that help you out.
> All I have to do is copy their declares straight to VB and look at the
> data
> types I have to provide. Is the same available for the SQLite API?
>

http://www.sqlite.org/capi3ref.html

That's the page you want.  It declares everything you need.  In the amount
of time that you've spent asking for an import library on this list you
could have written all of the imports.

The sqlite3* and sqlite3_stmt* types are just pointers, so you can declare
them as such.  Everything else is a fundamental type.  Now you're good to
go.  Combine that with my article in a previous message about how to use
the API and you're on the same footing as the C programmers who use the
library.

Clay Dowling



> -----Original Message-----
> From: John Stanton [mailto:[EMAIL PROTECTED]
> Sent: 28 November 2006 18:43
> To: sqlite-users@sqlite.org
> Subject: Re: [sqlite] C++ SQLite
>
> If you can use the Win32 API you can use the Sqlite API.  Just because
> they can be called from C programs does not make them "all to do with C".
>
> RB Smissaert wrote:
>> Will have a look, but I was looking for a text geared towards VB. I take
> it
>> the documentation that comes with SQLite is all to do with C.
>> In fact I already have a wrapper that seems to work well, the one from
>> TerraInformatica, but maybe there was more control if I could write my
> own.
>>
>> RBS
>>
>> -----Original Message-----
>> From: Clay Dowling [mailto:[EMAIL PROTECTED]
>> Sent: 28 November 2006 18:19
>> To: sqlite-users@sqlite.org
>> Subject: Re: [sqlite] C++ SQLite
>>
>>
>> [EMAIL PROTECTED] said:
>>
>>>Thanks. Would you know any VB source code that wraps all the possible
>>>declares in a class? Or do you know where to find the documentation
>>>to make all the possible declares in VB/VBA?
>>>
>>>RBS
>>
>>
>> The SQLite documentation will give you everything you need to write the
>> wrapper.  The sqlite.h file in the source bundle would also be a great
>> help.  You may also be able to find a wrapper already written linked on
>> the SQLite web site.
>>
>> Clay Dowling
>>
>>
>>>
>>>>Yes.  It's a regular windows DLL, so it will behave like all other
>>>>Windows
>>>>DLLs.
>>>>
>>>>Clay Dowling
>>>>
>>>>[EMAIL PROTECTED] said:
>>>>
>>>>>Can I call the SQLite API (as in the dll SQLite.dll) directly from
>>>>>VB or do I need the wrapper? So, could it work from VB with declares
>>>>>as I use for the Windows API?
>>>>>
>>>>>RBS
>>>>>
>>>>>
>>>>>>sebcity wrote:
>>>>>>
>>>>>>>How would one go about using c++ (Visual Studio.NET) to call and
>>>>>>>display
>>>>>>>SQLite tables. C++ wrappers?
>>>>>>
>>>>>>You should be able to call the Sqlite3 API directly.
>>>>>>
>>>>>>
>>
>>
>
----------------------------------------------------------------------------
>> -
>>
>>>>>>To unsubscribe, send email to [EMAIL PROTECTED]
>>>>>>
>>
>>
>
----------------------------------------------------------------------------
>> -
>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>
>
----------------------------------------------------------------------------
>> -
>>
>>>>>To unsubscribe, send email to [EMAIL PROTECTED]
>>>>>
>>
>>
>
----------------------------------------------------------------------------
>> -
>>
>>>>>
>>>>
>>>>--
>>>>Simple Content Management
>>>>http://www.ceamus.com
>>>>
>>>>
>>>>
>>
>>
>
----------------------------------------------------------------------------
>> -
>>
>>>>To unsubscribe, send email to [EMAIL PROTECTED]
>>>>
>>
>>
>
----------------------------------------------------------------------------
>> -
>>
>>>>
>>>>
>>>
>>>
>>>
>>>
>>
>
----------------------------------------------------------------------------
>> -
>>
>>>To unsubscribe, send email to [EMAIL PROTECTED]
>>>
>>
>>
>
----------------------------------------------------------------------------
>> -
>>
>>>
>>
>>
>
>
>
----------------------------------------------------------------------------
> -
> To unsubscribe, send email to [EMAIL PROTECTED]
>
----------------------------------------------------------------------------
> -
>
>
>
>
>
----------------------------------------------------------------------------
-
> To unsubscribe, send email to [EMAIL PROTECTED]
>
----------------------------------------------------------------------------
-
>
>


-- 
Simple Content Management
http://www.ceamus.com


----------------------------------------------------------------------------
-
To unsubscribe, send email to [EMAIL PROTECTED]
----------------------------------------------------------------------------
-




-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to