#ifdef SQLITE_INT64_TYPE
  typedef SQLITE_INT64_TYPE sqlite_int64;
  typedef unsigned SQLITE_INT64_TYPE sqlite_uint64;
#elif defined(_MSC_VER) || defined(__BORLANDC__)
  typedef __int64 sqlite_int64;
  typedef unsigned __int64 sqlite_uint64;
#else
  typedef long long sqlite_int64;
  typedef unsigned long long int sqlite_uint64;
#endif

Try changing the above statements in your sqlite3.h,
typedef int sqlite_int64;
typedef unsigned int sqlite_uint64, as appropriate for you.

Anybody please correct me if I'm wrong.


On 9/3/07, Sreedhar.a <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I am working on a 16 bit processor.
> In windows the maximum value of unique id is 2 power 63 -1
>
> I want to restrict the maximum value of the unique id to 2 power 15 -1
>
> Can anyone help me in this?.
>
> Best Regards,
> A.Sreedhar.
>
> Jasmin Infotech Pvt. Ltd.
> Plot 119, Velachery Tambaram Road,
> (Opposite NIOT), Pallikaranai,
> Chennai 601 302
> India
> Tel: +91 44 3061 9600 ext 3057
> Fax: + 91 44 3061 9605
>
>
> ***************************************************************************
> Information in this email is proprietary and Confidential to
> Jasmin Infotech. Any use, copying or dissemination of the
> information in any manner is strictly prohibited. If you are
> not the intended recipient, please destroy the message and please inform us.
>
> ****************************************************************************
>
>

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

Reply via email to