Search found 8 matches

by garling
Tue 06 Oct 2015 15:36
Forum: dotConnect for SQLite
Topic: DLLNotFoundException when I run my program
Replies: 5
Views: 2510

Re: DLLNotFoundException when I run my program

Disregard I found the issue, it was a setup file that was not loaded that contained a lookup var for a query.
by garling
Tue 06 Oct 2015 14:19
Forum: dotConnect for SQLite
Topic: DLLNotFoundException when I run my program
Replies: 5
Views: 2510

Re: DLLNotFoundException when I run my program

When I run the program on my dev machine it works just fine (In Visual Studio and as a stand alone application). I tried to install and run in a Windows 8.1 (Surface 3) Windwos 10 and a Windows Server 2008 R2, it runs but my dataview shows the headers but no data. It seems like I am missing something on those machines,
by garling
Mon 05 Oct 2015 20:16
Forum: dotConnect for SQLite
Topic: DLLNotFoundException when I run my program
Replies: 5
Views: 2510

Re: DLLNotFoundException when I run my program

Update:

When I add the sqlite3.dll in the app folder, I don't get the error but my data does not display on my form.
by garling
Mon 05 Oct 2015 19:50
Forum: dotConnect for SQLite
Topic: DLLNotFoundException when I run my program
Replies: 5
Views: 2510

DLLNotFoundException when I run my program

I am getting the following error when I run my program:

Devart.Data.Linq.LinqCommandExecutionExecption: Error on opening DbConnection. ---> Devart.Data.SQLiteException: Unable to open database file ---> System.DllNotFoundExeption: Unable to load DLL 'sqlite3': The specified module could not be found.

I have all the references added as needed.
by garling
Thu 06 Aug 2015 14:15
Forum: LINQ Insight
Topic: VS2015
Replies: 6
Views: 30705

Re: VS2015

Thanks
by garling
Wed 05 Aug 2015 17:06
Forum: LINQ Insight
Topic: VS2015
Replies: 6
Views: 30705

VS2015

Does this work with VS2015 yet? If so how do I get it setup, the installer only sets it up for VS2013.
by garling
Tue 28 Jul 2015 18:57
Forum: dotConnect for SQLite
Topic: Filling a DataGridView with a dataset using parameters
Replies: 2
Views: 2219

Filling a DataGridView with a dataset using parameters

I created a dataset to my SQLite db and I set up a parameter to retrieve data from it. How do I fill by datagrid view with the dataset using a parameter?

This is what I have used before to fill with out a parameter:

Code: Select all

orderHeaderSurfaceDataGridView.DataSource = dsPendingOrders1.Tables[1];
            dsPendingOrders1.Fill();
How would I pass a parameter in?