Or is there some way to use both 32-bit and 64-bit dll in one project?

I did some test, but they use same namespaces, I can't use them at same
time.

e.g. some code like this?
if (is_64_bit){
  db = new System.Data.Sqlite_64;
}else{
  db = new System.Data.Sqlite_32;
}




2011/12/28 Joe Mistachkin <sql...@mistachkin.com>

>
> >
> > is there a dll can be used on both system?
> >
>
> Not really.  Different native code is required for 32-bit and 64-bit
> processes.
>
> --
> Joe Mistachkin
>
> _______________________________________________
> 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

Reply via email to