Re: [sqlite] new to sqlite rec'd BadImageFormatException error

2011-05-05 Thread kp2011
; Sent: Wednesday, May 04, 2011 3:18 PM > To: sqlite-users@sqlite.org > Subject: [sqlite] new to sqlite rec'd BadImageFormatException error > > > this is the vb net code I was running > > Dim f As New OpenFileDialog > f.Filter = "SQLi

Re: [sqlite] new to sqlite rec'd BadImageFormatException error

2011-05-05 Thread kp2011
I got it passed this error by using different SQLite library and the ADO.NET provider(an older one) its a bit confusing for a newbie. what is the newest I could use for vb net 2008? Filip Navara-3 wrote: > > What platform is set as target for the VB.NET code (x86 / x64 / Any CPU)? > Which

Re: [sqlite] new to sqlite rec'd BadImageFormatException error

2011-05-04 Thread kp2011
I tried several different sqlite.dlls now it works Thanks kp2011 wrote: > > this is the vb net code I was running > > Dim f As New OpenFileDialog > f.Filter = "SQLite 3 (*.db)|*.db|All Files|*.*" > If f.ShowDialog() = DialogResult.OK Then > Dim

Re: [sqlite] new to sqlite rec'd BadImageFormatException error

2011-05-04 Thread Joe Mokos
] On Behalf Of kp2011 Sent: Wednesday, May 04, 2011 3:18 PM To: sqlite-users@sqlite.org Subject: [sqlite] new to sqlite rec'd BadImageFormatException error this is the vb net code I was running Dim f As New OpenFileDialog f.Filter = "SQLite 3 (*.db)|*.db|All

[sqlite] new to sqlite rec'd BadImageFormatException error

2011-05-04 Thread kp2011
this is the vb net code I was running Dim f As New OpenFileDialog f.Filter = "SQLite 3 (*.db)|*.db|All Files|*.*" If f.ShowDialog() = DialogResult.OK Then Dim SQLconnect As New SQLite.SQLiteConnection() Dim SQLcommand As