Tagged Questions
The datasource tag has no wiki summary.
14
votes
3answers
3k views
WCF Service Reference .datasource files
What are the .datasource files that are automatically generated by "Create Service Reference" in Visual Studio? The comment in the file is this:
This file is automatically generated
by Visual ...
10
votes
2answers
3k views
What's the difference between data source and delegate?
I have a fundamental question related to Cocoa frameworks design patterns.
What's the difference between delegate and data source?
Both of them could use @protocols declaration, but some classes or ...
10
votes
4answers
2k views
Can I configure Grails with no datasource?
I have a Grails app that loads its data from xml files and delivers rss feeds via rome. I don't have any domain classes and my app has no datasource. I don't want Grails to load an in memory hsql db ...
9
votes
6answers
724 views
How not to lose binding source updates?
Suppose I have a modal dialog with a textbox and OK/Cancel buttons. And it is built on MVVM - i.e. it has a ViewModel object with a string property that the textbox is bound to.
Say, I enter some ...
9
votes
5answers
254 views
How do I turn a flat file of data into a queryable data source
I generate files, lets call them .dwrf files, which contain a significant amount of data. Currently we export those to .CSV and the resulting files are large (2GB+). I would like to cut out the export ...
9
votes
3answers
7k views
Externalizing Grails Datasource configuration
Grails 1.x allows using external configuration files by setting the grails.config.locations directive. Is there a similar approach available for externalizing the database configuration in ...
8
votes
4answers
787 views
referencing configuration.properties outside of the .war
i want to deploy a war and the war should fetch some properties from outside the war (lets say where the .war file is, that same directory.)
at the moment this is the best solution i have found:
...
8
votes
9answers
3k views
Odd problem with ListBox.DataSource
I'm writing a Windows application and using a Listbox control. I'm developing with Visual Studio C# 2008 Express Edition.
I've got a data object that looks something like this
public class ...
7
votes
6answers
4k views
c# dictionary one key many values
I want to create a data store to allow me to store some data.
The first idea was to create a dictionary where you have 1 key with many values, so a bit like a one to many relationship
I think the ...
6
votes
1answer
109 views
Grails Connections behaving very differently in Integration test
We have a custom data source that extends BasicDataSource. We have overridden the getConnection method which does a couple things inside of it. When we run the webapp outside of testing, when we ...
6
votes
4answers
8k views
Iphone: TabView + TableView
I think I'm missing something simple, but I can't figure out exactly what it is.
I'm trying to set up an App with a UITabViewController, and one of the Tabs will have a UITableView and UISearchBar ...
6
votes
1answer
25k views
C# Update combobox bound to generic list
I have a combobox on my form that is bound to a generic list of string like this:
private List<string> mAllianceList = new List<string>();
private void FillAllianceList()
{
// Add ...
5
votes
2answers
166 views
Do I need DataSource in JPA Hibernate project?
I am preparing some application with usage of JPA 2.0, Hibernate as provider, MySQL 5 as database, which will be deployed on JBoss AS 7.0.2.I have already configured some basics in persistence.xml ...
5
votes
5answers
679 views
Why was TDataSource created originally?
What was (or would be) the reasoning behind creating TDataSource as an intermediary between data bound components and the actual underlying TDataSets, rather than having the components just connect ...
5
votes
1answer
2k views
Can't Allow User To Add Rows to DataGridView with List<> Datasource
Hi everyone,
I've DataGridView that bound to List<myClass> as DataSource.
But when i set "AllowUserToAddRows" property to "True" there is nothing appear.
I tried to change the DataSource to ...
5
votes
7answers
557 views
Silverlight that degrades to html
I am interested in creating a website entirely in silverlight (personal reasons) but I don't want people who don't yet have silverlight (a good many) to have to install a plugin just to view my site. ...
5
votes
5answers
4k views
SQL Server Reporting Services Datasource keeps losing database login credentials
In my development environment, every time I reboot windows (which must be done at least daily for me), all of my Shared SSRS Datasources lose their credentials.
Currently I have them set up to log ...
4
votes
1answer
2k views
java.lang.ClassNotFoundException: org.apache.tomcat.jdbc.pool DataSourceFactory
I'm investigating moving away from an Oracle connection pool and using the Tomcat connection pool. I followed the myriad of example for configuring the <Resource> in Tomcat's /conf/server.xml. I ...
4
votes
3answers
601 views
Should I close JNDI-obtained data source?
Update: Apparently Tomcat, starting with 7.0.11, closes the DataSource for you, so it's not available in the webapp's contextDestroyed. See: https://issues.apache.org/bugzilla/show_bug.cgi?id=25060
...
4
votes
1answer
139 views
Object persistence terminology: 'repository' vs. 'store' vs. 'context' vs. 'retriever' vs. (…)
I'm not sure how to name data store classes when designing a program's data access layer (DAL).
(By data store class, I mean a class that is responsible to read a persisted object into memory, or to ...
4
votes
5answers
3k views
How to use encrypted password in apache BasicDataSource?
At present i am keeping the password [ unencrypted ] in a property file. This password get placed as is in the configuration xml using ant.
[ The configuration xml is for datasource, it is creating ...
4
votes
1answer
325 views
Visual Studio 2010: Data Sources window in ASP.Net project?
I'm trying to add a Sharepoint site as a data source on a web project in VS2010; so I can generate the appropriate DAO code to interact with the site's data over REST. However, neither the data ...
4
votes
1answer
2k views
List as DataSource for DataList
All Types implement IEnumerable interface could be used for a DataSource of a DataList. For example List. But what we will write for the data bound expression in ItemTemplate?
List<int> myList ...
4
votes
1answer
781 views
DisplayMember getting reset on DataSource=null
I have a ComboBox whose items are set using the DataSource property. The DataSource is a collection of a custom object (that has a string property 'Value' and int property 'Id'). In the initialise ...
4
votes
1answer
3k views
Deploying a datasource w/ JAAS login module as a .sar in jboss
Does anyone have experience bundling a datasource (-ds.xml) definition + login-config.xml as a service archive in jboss? I've been fighting with this for awhile to no avail. I'm just looking for ...
3
votes
4answers
45 views
One DataSource for multiple controls
I have two ListBox in my winforms application, I assigne a datasource for both of them as follow:
private void MakeMeasurementUnits()
{
var units = new List<MeasurementUnit>
...
3
votes
1answer
72 views
New method added in javax.sql.CommonDataSource in 1.7
Trying to compile my app against java 1.7 I found what there was a new method added in javax.sql.CommonDataSource (and so in j.s.DataSource) -- .getParentLogger(). You can compare CommonDataSource:1.7 ...
3
votes
3answers
79 views
Storing data in XML or SQL?
I'm developing a Windows Phone 7.5 app.
I have to store 22 items with the following fields:
Number (int).
Name (string).
Description (string).
Name and description will be in various languages.
...
3
votes
1answer
97 views
How to display two grids with different data on the same form
I have a form with two grids. I have one table with rows where each row has a status of Yes or No. I'd like to display all the yes's in the top and the no's in the bottom grid.
A similar scenario ...
3
votes
1answer
84 views
how to return connection to pool
do we need to call any method on dbcp.BasicDataSource or jndi datasource(i'm using jboss) to return the connection after done with it?
thanks in advance
3
votes
1answer
72 views
Having more than one data source
I haven't found a question on this topic so I'll ask. I've never actually tackled something which uses more than one data source. One example would be ETL which requires two data sources. How could ...
3
votes
3answers
173 views
ASP.NET - What is the difference of DataSourceID and DataSource?
What is the difference of DataSourceID and DataSource from the controls' attribute? Can I use them interchangeably?
When I try to set DataSource property at the design time, by typing it on the aspx ...
3
votes
1answer
56 views
Grails start two in-memory databases for dev/test?
Is there a way to start up two in-memory databases with grails? Specifically, I'd like to integration test my ETL process and allow reporting to be runnable in both development and test environments.
3
votes
1answer
209 views
ColdFusion datasource don't connect properly
OK, so I'm trying to connect a datasource to a MySQL database. When I put in all my info I get this error:
Connection verification failed for data source: phoenix3
...
3
votes
2answers
194 views
Design Pattern for Winform .NET to ASP.NET project
What is currently the most widely used and accepted design pattern for developing .NET applications with a Windows and Web User Interface?
An example of this could be an application that retrieves ...
3
votes
2answers
115 views
How can I optimize RAM usage when I need to show user a large amout of data?
I have an application in which I use DataGrid to show data to user. I use a DataTable object to store data in memory. DataTable have about 70 columns.
I have a very large data set. I want to display ...
3
votes
3answers
747 views
Easy way to start a standalone JNDI server (and register some resources)
For testing purposes, I'm looking for a simple way to start a standalone JNDI server, and bind my javax.sql.DataSource to "java:/comp/env/jdbc/mydatasource" programmatically.
The server should bind ...
3
votes
1answer
26 views
Is :TEXT a valid format for a KRL datasource?
The docs mention :XML, :JSON, and :HTML, but I have a URL that returns plain text. I'd like to write
global {
datasource tests_executed:TEXT <- "http://saucelabs.com/rest/v1/info/counter"
}
rule ...
3
votes
2answers
790 views
Are Clustered WebLogic JDBC DataSource settings per node or per cluster?
I have a WebLogic 9.2 Cluster which runs 2 managed server nodes. I have created a JDBC Connection Pool which I have targeted at All servers in the cluster. I believe this will result in the physical ...
3
votes
1answer
135 views
dataGridView1 connect to my generic list?
dataGridView1 I want to connect to my generic list. To do this I use the code below.
dataGridView1.DataSource = List;
(List is static)
But every time I want to update list generic dataGridView1 ...
3
votes
1answer
552 views
DataGridVIew populated with anonymous type, how to filter?
I've populated a DataGridView with a LINQ query which returns an anonymous type.
Question: any chance to filter the DataGridView whose data source is actually anonymous?
// Setting the datagridview ...
3
votes
3answers
154 views
Read Application.DataSource in CF9
How can I read the default application.datasource from my code?
A dump of application does not show me the datasource, and trying to read application.datasource gives an error.
3
votes
1answer
237 views
ComboBox datasource and application.setting issues
I'm trying to do something that I thought would be relatively simple in WinForms, but it's not turning out that way.
Here's what I want to do:
Have a ComboBox's dropdown values populated from an ...
3
votes
2answers
163 views
Binding a DataGridView to a DataSet directly fails
A DataGridView bound by this code does not display information as expected:
dataGridView1.DataSource = ds;
here's the code for ds:
public DataSet ConnectandReadList()
{
DataSet ...
3
votes
3answers
631 views
How do I implement getConnection() in DataSource in Java?
I'm reading up on DataSource, here, and trying to implement it in my own little project by using a simple file as my "data source". I've created a class that is pretty simple at the moment...
public ...
3
votes
1answer
139 views
Slow Visual Studio 2008 performance from IDE when viewing all data sources
We are using Visual Studio 2008 for our development of our core product. We have a C# solution with roughly 5 projects and 250 data sources.
It takes anywhere from 15-25 seconds any time I do either ...
3
votes
2answers
3k views
How can I bind a DataSource to an InitialContext for JUnit testing?
I'm trying to run JUnit tests on database "worker" classes that do a jndi lookup on an InitialContext to get a DataSource. The worker classes are usually running on a Glassfish v3 App Server which has ...
3
votes
2answers
2k views
JBoss database connection pool auto-commit behavior
We are using JBoss 4 and Oracle with a JNDI datasource configured via JBoss datasource XML file.
Recently realized that all connections acquired from the datasource by default has the auto-commit ...
3
votes
2answers
420 views
Configuring Grails to use own DataSource implementation or to proxy the standard DataSource
In an application I want to use my own implementation of javax.sql.DataSource that extends the standard org.apache.commons.dbcp.BasicDataSource used by Grails and adds the functionality to set the ...
3
votes
1answer
324 views
How to use a TcxCustomDataSource in a TcxExtLookupComboBox?
I use a TcxExtLookupComboBox from Devexpress and try to implement a custom datasource. I have set the customdatasource like this:
procedure TMainForm.FormCreate(Sender: TObject);
begin
fDataSource ...