Questions tagged [dataprovider]

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

497 questions
3
votes
2 answers

Comparison of Entity Framework compatible providers for Oracle?

I have read similar questions and their answers, however, it seems none deal with this exact question except for one, which is out of date (from 2009 - pre EF4). Does anyone have any positive or negative experience with EF providers for Oracle, if…
3
votes
1 answer

How do I stop Sitecore caching my custom data provider?

I have a custom data provider pulling in data via a webservice. I have pretty much followed this example here: http://www.techphoria414.com/Blog/Black-Art-of-Sitecore-Data-Providers.aspx Sitecore seems to be caching my data provider though. For…
Lee Cook
  • 573
  • 4
  • 18
3
votes
1 answer

Showing an array in React-Admin

I'm trying to create a phonebook app using react-admin. I created a dataProvider and i want to display the number and type together, how should I do this? It does not show me any number or type in the output. dataprovider.js import fakeDataProvider…
Iman Jalali
  • 127
  • 9
3
votes
1 answer

multiple dataProviders with react-admin v 3.9.6

Hi I would like to use 2 dataProviders in v3 using a superDataProvider. And decide by resource's name. I follow same examples but without success ( also I try the demo way using dataProviderFactory) import jsonServerProvider from…
Pamela Pereyra
  • 101
  • 1
  • 10
3
votes
1 answer

NHibernate issue "Unable to find the requested .Net Framework Data Provider. It may not be installed. "

I'm running into a problem using NHibernate 3.0 with SQL server 2008 in a asp.net 4.0 project. During the configuration task of NHibernate, the BuildSessionFactory() method raise an exception: "Unable to find the requested .Net Framework Data…
themarcuz
  • 2,573
  • 6
  • 36
  • 53
3
votes
0 answers

Why in react-admin GMapINput is not recognized?

I am trying to use GMapInput from @fusionworks/ra-google-maps-input within react-admin, It works with sample project But breaks when doing npm install into own project, Something went wrong A client error occurred and your request couldn't be…
Baimyrza Shamyr
  • 449
  • 1
  • 6
  • 17
3
votes
2 answers

PHPUnit, Using class consts to change State

I'm learning Zend and also PHPUnit. Here is what I have below public function changeToIllegalState() { return array( array( Application_Model_SomeModel::FAIL ), array( Application_Model_SomeModel::SUCCESS ) ); } /** *…
Jerry Saravia
  • 3,737
  • 3
  • 24
  • 39
3
votes
1 answer

CustomDataProvider for feature file (QAF)

I'm using QAF and it's amazing tool, but i have one problem. Are there any ways to parameterize cucumber feature steps with custom data provider as it's done in BDD files? For example, we can insert data from external file Examples:…
3
votes
2 answers

.net mysql connector Vs the odbc mysql connector 3.51

Hi guys just a quick question, After having a nightmare trying to get an app I was writing using Visual Studio 2010 to connect to my local MySQL database using the ODBC MySQL Connector 3.51. I decided that I would try the native .Net MySQL provider…
Vade
  • 2,009
  • 6
  • 24
  • 32
3
votes
1 answer

AS3: How to know if dataprovider or its content(s) is changed

I'm implementing some kind of combobox control (by extending spark.components.supportClasses.DropDownListBase) Now, inside this control; I need to know: if the dataprovider is changed/assigned. (which I can do... the first approach below works); if…
Onur Yıldırım
  • 32,327
  • 12
  • 84
  • 98
3
votes
2 answers

Run multiple tests with Selenium DataProvider

I am currently using testng + selenium to automate my tests, and I have the following scenario: I need to read from an excel file, transform each row in an object and run 1 test for each of them. I am trying to use annotation @DataProvider to return…
Felipe
  • 41
  • 4
3
votes
1 answer

Yii2 data provider for rest api call

Currently I'm using the yii2 array dataprovider for listing the datas from rest api. We have more than 10k records. Each rest api call can get only maximum 100 records, If we want more i need to give the limit and offset for this rest api call. Is…
sk2
  • 1,171
  • 1
  • 10
  • 28
3
votes
1 answer

Convert from query to ModelSearch of Yii2

I'm new in Yii2, and I have a query with right result: SELECT DISTINCT workloadTeam.project_id, wp.project_name, workloadTeam.user_id, workloadTeam.commit_time, wp.workload_type FROM (SELECT p.id, p.project_name, w.user_id, w.commit_time,…
Francis
  • 288
  • 1
  • 5
  • 17
3
votes
2 answers

yii2 search of one grid view is affecting other gird views

I have multiples Grid Views in index page, Every Grid view (say: pending records Grid view, completed records Grid view, cancelled records Grid view, ... ) has same columns (e.g: name, number, location, ... ) and each of them is having its own…
K Arun Singh
  • 2,629
  • 3
  • 20
  • 34
3
votes
2 answers

Can I merge a ArrayDataProvider and ActiveDataProvider?

Using Yii2 I'll need to provide a DataProvider with specific data. The problem is that I need to create a single DataProvider with an array data and data from a table in a database. Therefore, I think that I should mix an ArrayDataProvider and an…
Sageth
  • 1,102
  • 1
  • 15
  • 30