Tagged Questions
System.Data is a namespace of the .NET framework. It provides access to classes that represent the ADO.NET architecture.
5
votes
1answer
443 views
Can I configure AutoMapper to read from custom column names when mapping from IDataReader?
Psuedo code for mapping configuration (as below) is not possible since the lambda only lets us access Type IDataReader, wheras when actually mapping, AutoMapper will reach into each "cell" of each ...
4
votes
4answers
132 views
Does Mono treat System.Data.SqlCommands differently to .NET?
I'm having some trouble with an application that we're porting to Mono.
(For reference, the .NET runtime is 4.0, and the mono version is 2.6.7.)
EDIT: This problem persists on Mono 2.10.2
As part ...
4
votes
2answers
124 views
Is there a built-in class in the .Net framework that can be used to denote an AnsiString?
For dapper I need to build support for passing in AnsiString params.
Databases have both unicode and non-unicode strings, picking the right parameter type is sometimes crucial.
DbType.String vs ...
2
votes
1answer
776 views
create table with records in sql server with powershell: what's best?
I need to create and populate a table on sql server db starting from a powershell array of objects coming from select-object. I need to create the table with the correct datatypes and fields.
One way ...
2
votes
2answers
1k views
Querying DBF file with System.Data.Odbc.OdbcConnection when file path/name has space
I'm trying to query a DBF file using System.Data.Odbc.OdbcConnection. It works correctly when the file doesn't have a space in it, but I get the following error "Error opening DBF File: ERROR ...
2
votes
4answers
556 views
Create custom driver for System.Data.Common
Background:
Our C# application generates and executes queries to several types of databases (Oracle, SQL Server, MySQL), but a requirement came up to also apply them to a proprietary file format.
...
2
votes
2answers
301 views
System.Data missing in F# project
I'm targeting .NET 3.5, but cannot get System.Data to come up in Intellisense. What am I missing?
2
votes
3answers
565 views
How do You Get a Specific Value From a System.Data.DataTable Object?
I'm a low-level algorithm programmer, and databases are not really my thing - so this'll be a n00b question if ever there was one.
I'm running a simple SELECT query through our development team's ...
1
vote
2answers
52 views
Int64 throws “Number overflow” using SQLite
I've created an SQLite database (in windows) with a Int64 column. I copied the database to my MonoTouch program.
When I try to read the column in MonoTouch (Mono.Data.Sqlite), it throws a "Number ...
1
vote
1answer
68 views
MonoTouch: Can't create DbParameterCollection?
I'm a vb.net guy trying to figure out MonoTouch c#.
I made this data helper:
public static void ExecuteCommand (SqliteConnection cnn, string command, System.Data.Common.DbParameterCollection ...
1
vote
2answers
32 views
Why is my comparison to null, of a value contained in a System.Data.DataRow object, failing?
I am converting an app's database from Access to MS SQL Server and encountered a problem with a line of code that checks to see if an item retrieved from the database is null.
It essentially looks ...
1
vote
2answers
67 views
Autogenerated enum definition causing problems on client side
I have a situation like this, where i have
WCF Service (VS2008) Hosted somewhere
Main Solution (VS2005) which has a Consumer Project of type 'class Library' with the Service reference to this WCF ...
1
vote
1answer
228 views
How can I get fluent nhibernate working in .net 4
I am using all the dlls from the standard fluent nhibernate download, as well as the standard sqlite dll.
It only works if I switch target framework to 3.5 -- in which case the reference for ...
1
vote
0answers
71 views
Error while compiling / debugging VB 2008 source code
I am working on a VB programm in Visual Studio 2008.
It worked fine, but from one day to another I got below error message.
I can not manage to get rid of it. Is there anyone who can help.
At this ...
1
vote
1answer
239 views
Mango and System.Data
I've been experimenting with Mango's new data libraries (System.Data.Linq) but I've never used Linq to SQL before and all of my existing code is written for SQLite with ADO.NET. Is there any way (via ...
1
vote
3answers
511 views
stackoverflow exception in DataView row filter
I am getting "An unhandled exception of type 'System.StackOverflowException' occurred in System.Data.dll" in my DataView rowfilter property. I'm not getting any stack trace for that.
So can any one ...
1
vote
3answers
147 views
Error in DropDownList using ASP.NET
I have a DropDownList called (DDL) in ASP.net page, I want that DDL contains some records of a table in the data base.
So I did this :
DDL.DataSource = myDataReader
DDL.DataBind()
But it's giving ...
1
vote
1answer
4k views
Getting value from field in DataTable when column name has spaces
I have tried:
ObjDTOleDBNFeIntegra.Rows(I)("[Cnpj Cpf]").ToString() //with brackets
ObjDTOleDBNFeIntegra.Rows(I)("'Cnpj Cpf'").ToString() //with apostrophe
ObjDTOleDBNFeIntegra.Rows(I)("Cnpj ...
1
vote
1answer
419 views
System.Data in Mono
Has System.Data in Mono been expanded to include extra functionality?
I'm attempting to make use of the SQL Parser written for Mono in Mono.Data.SqlExpressions but when all the classes in the ...
1
vote
3answers
2k views
ASP.NET MVC - System.Data.DataSet not referenced problem
Well, first of all sorry about this question it must be pretty straight forward for you guys but I'm struggling myself on it, and I need to make it work :(
Well I'm trying t o use DataSet on my ...
1
vote
3answers
1k views
Where should I create my DbCommand instances?
I seemingly have two choices:
Make my class implement IDisposable. Create my DbCommand instances as private readonly fields, and in the constructor, add the parameters that they use. Whenever I want ...
0
votes
1answer
60 views
DataGridView BindingDataSource with a Foreign Key
I have a DataGridView that is bound to a BindingList<T> of a custom business object, with fields DeckID, Name, UserID, Size, and Notes.
This is being called up from an MSSQL database via an ...
0
votes
1answer
24 views
Why is the System.Data.DataTable.ImportRow method inserting a row with no columns?
I have some C# code that looks something like this
System.Data.DataRow row;
var table = new System.Data.DataTable();
// code that populates the DataRow...
table.ImportRow(row);
After I call the ...
0
votes
1answer
86 views
In C#: Why no 'Item' on System.Data.DataRow?
I'm rewriting/converting some VB-Code:
Dim dt As New System.Data.DataTable()
Dim dr As System.Data.DataRow = dt.NewRow()
Dim item = dr.Item("myItem")
C#:
System.Data.DataTable dt = new ...
0
votes
1answer
40 views
Xml loaded dataset is missing a table
When I read an xml file into a dataset, if the root node has more than one of each child tag, it doesn't create a table for the root node. Why is this? Is there any way to get it to generate the root ...
0
votes
1answer
100 views
Table Property broken after C# Typed DataSet Copy()
I've got a typed DataSet with multiple tables that I want copy, complete with data as well as schema. I can access the tables like so in my original:
MyDataSetType dsMyFirstDataSet;
MyDataTableType ...
0
votes
1answer
72 views
Sorting OrderedEnumerableRowCollection .. strings like 00-000, 01-000 are not sorted as expected
i've got some records from a query like this
SortingCode (column)
Row: 00-005
Row: 00-000
the folowing code, doesn't sort this ...
var items =
from c in table
orderby c.SortingCode
...
0
votes
0answers
172 views
Error cannot read .manifest
I am writing a VB code in visual studio 2008. From one day to another i got below error and the programm cannot be debugged or compiles nor tested.
The manifest file seems to be in the correct place ...
0
votes
1answer
246 views
How to customize InnerException.Message for System.Data.UpdateException in ASP.NET
First of all thanks for taking the time to read through my post. I have a question that may be a newbie piece of cake for some.
I am adding data to a database table using Entity Framework. When ...
0
votes
2answers
140 views
Build error complaining that it cannot find System.Data.Entity in asp.net application
I'm building an ASP.net application using Visual Studio Web Developer 2010 Express and have followed the Nerd Dinner tutorial for a large part. The problem is that when I try to build, it is ...
0
votes
1answer
327 views
C# Create Directory based on ZIP code value of file and Transfer Files using System.IO, System.Data, & CSVReader
Existing App: I have a C# app that runs a search and fetches matching lead files and throws them into a specificied directory.
Adding functionality to: have the system check to see if a subdirectory ...
0
votes
1answer
131 views
.NET/ADO.NET: Detecting Connection Pool Limits
I am getting connection timeouts and I suspect they may be caused by a bug that is allowing me to exceed my connection pool limit. Is there a way to progamatically detect this?
0
votes
2answers
497 views
Help Optomizing Bulk Inserts into Oracle Using VB.NET
I am inserting a block of 5000 records at a time, one block right after the other. The commands are created in a seperate DLL and can call anyone of 4 different stored procedures. Is there a bulk ...
0
votes
1answer
49 views
Is there a limit to the number of DataColumns I can add to a DataTable?
I can't find any references to there being a limit to the number of DataColumns I can add to a DataTable. The DataTable will not be generated from a SQL query, but rather synthesized from other data.
...
0
votes
2answers
3k views
What does “Child list for field … cannot be created” mean?
My C# coded application uses an Infragistics.Win.UltraWinGrid.UltraGrid to display some data. The data is basically a collection of computers. The application is able to filter these computers (like ...