Questions tagged [dataprovider]

A property of the Flex DataGrid and AdvancedDataGrid used to specify a data source.

497 questions
9
votes
6 answers

VS 2015 SQLite data provider

I'm using VS 2015 and i want to develop Win Form application with .NET Framework 4.5 and SQLite. I have install the last "System.Data.SQLite" nuget package with all dependencies to my project but I couldn't find the SQLite data provider when I was…
TotPeRo
  • 6,561
  • 4
  • 47
  • 60
8
votes
1 answer

Custom .NET Data Providers

Is is possible to use a custom .NET data provider without installing it in the GAC? Can I reference a custom DLL and register it inside my configuration file?
8
votes
1 answer

Oracle data provider for .NET has been installed without machine-wide configuration

I reinstalled ODAC Oracle but keep getting following error "Oracle Data Provider for .NET has been installed without a machine-wide configuration. However, a version of Oracle Data Provider for .NET has been detected in the Global Assembly Cache…
helpME1986
  • 933
  • 3
  • 12
  • 26
8
votes
3 answers

Providing connection string to Linq-To-Sql data provider

Is there a way to provide a connection string to Linq-To-Sql data provider in F# from App.Config file. I have tried the following just for testing: let mutable connString = @"Data Source=PCSQLEXPRESS;Initial Catalog=NortwindDB;Integrated…
fitims
  • 323
  • 1
  • 4
  • 10
7
votes
4 answers

ODP .NET behaves weird

The application itself described in my previous question. On the DAL side I use Oracle.ManagedDataAccess, Version=4.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342 Here is connection string: User id=usr;Password=pwd;Data…
kseen
  • 359
  • 8
  • 56
  • 104
6
votes
2 answers

Entity Framework data provider not found, entityclient

First off, I've found many questions and many answers related or perceived identical to my issue however nothing seems to be working out for me. I have a brand new templated MVC4 website, a brand new database in a fresh install of sql server 2008…
Perry
  • 2,250
  • 2
  • 19
  • 24
5
votes
2 answers

React-admin: How to Pass more parameters to a dataProvider for type GET_LIST

I want to pass one custom parameter to the Admin's dataProvider for type 'GET_LIST'. I have something like this in App.js:
WiXSL
  • 689
  • 5
  • 16
5
votes
2 answers

Yii2: How to add query params to searchModel of index action without affecting the filter model of the gridview

$searchModel = new CustomersSearch(); $dataProvider = $searchModel->search(Yii::$app->request->queryParams); In Yii2, by default, we are provided with a searchModel and a dataProvider for the Index action. However, to customize the data returned so…
japheth
  • 373
  • 1
  • 10
  • 34
5
votes
2 answers

How we can name the test case dynamically when using data provider

How we can name the test case dynamically when using data provider, for example: If I have a login test case, and I want use data provider for different user name and password, where each user represent a country, how I will have the output of…
5
votes
4 answers

Flex 3.5.0; Update ComboBox display list upon dataprovider change

I have two related ComboBoxes ( continents, and countries ). When the continents ComboBox changes I request a XML from a certain URL. When I receive that XML i change the DataProvider for the countries ComboBox, like this: public function…
4
votes
1 answer

ODBC Driver or .NET DataProvider for Centura SQLbase needed

For a Customer we need to import data from an old Centura SQLBase 7.5.1 database. The best way would be to connect directly from .Net to the customers database, but I can't find a driver or .Net Connector to use. So far I found out that the…
Jürgen Steinblock
  • 30,746
  • 24
  • 119
  • 189
4
votes
2 answers

creating a dotnetnuke package with easy to install sql database

I am new to dotnetnuke and asp.net altogether. I need to create a module package that is easy to install on a different DNN site. The problem is that SQL tables and other database objects need to be added manually. I would like them to be added…
Jelena
  • 81
  • 1
  • 6
4
votes
1 answer

Vaadin 8 Grid does not work with too many entries

I created a Vaadin Grid to show some entities, and this worked fine I used a data dataprovider from callback. Now i added 6800000 Entries in the database and grid table is not scrollable anymore, first i tried 1200000 entries and it still worked. I…
Ace of Spade
  • 388
  • 3
  • 22
4
votes
2 answers

How to use @DataProvider present in different class

How to use @DataProvider that is present in a different class? I have created a different package and I have defined data providers next to each test cases. Please share how I may to use that in a different class.
4
votes
1 answer

Iterating a dataProvider in flex

I'm wondering... I want to iterate through a dataProvider, in a Component which is based on a DropDownList. First thing, that it didn't work (it compiled, but never iterated), was: var o:Object; for each (var o:Object in dataProvider) { } I guess…
huff
  • 1,954
  • 2
  • 28
  • 49
1
2
3
33 34