System.Data is a namespace of the .NET framework. It provides access to classes that represent the ADO.NET architecture.
0
votes
1answer
20 views
Mono can't find System.Data.dll on Linux
I'm trying to compile the following example from here with dmcs (and gmcs... I tried both):
using System;
using System.Data;
using Mono.Data.Sqlite;
public class Example
{
static void Main()
...
0
votes
0answers
37 views
DataTable merge treats duplicate PK as update rather than erroring
I am trying to merge two DataTables - one representing current data, and one representing proposed insertions to that data.
These tables have the same schema, both with a simple, user-provided ...
1
vote
1answer
23 views
DataRow constructor inaccessible when writing DataSet extension?
I am trying to write a couple of extensions to convert UniDataSets and UniRecords to DataSet and DataRow but I get the following error when I try to compile.
...
2
votes
1answer
74 views
Windows CE and Oracle
I am using VS2005 and I have a project to build an application for Windows CE 5 which make a connection to an Oracle Database (11g).
Here is my code :
OracleConnection oConnexion = null;
...
0
votes
0answers
15 views
Unknown “ System.Data.Objects.ELinq.InitializerMetadata.Grouping<Dynamic Class2,…>” in result of Dynamic GroupBy
While working on a Dynamic GroupBy i am getting the rows in
System.Data.Objects.ELinq.InitializerMetadata.Grouping
string xq = "new (firstAmount as FirstAmount,secondAmount as SecondAmount)";
...
0
votes
1answer
211 views
Imports System.Data.SqlClient … Imports System.Data …?
i am using both VISUAL WEB DEVELOPER 2010 & VISUAL STUDIO 2012 EXPRESS EDITION.
While writing WINDOWS FORMS APPLICATION ... i used only one statement to work with DataSet,DataTable and Datarow.It ...
1
vote
2answers
212 views
Why to use using statement on DbTransaction in ADO.NET / C#?
I understood the implicit rollback (that usually happens when exception happens and Dispose is called) is not guaranteed for all providers. However many examples uses:
using (DbTransactio txn = ...
0
votes
1answer
1k views
What is the purpose of using CommandType.Tabledirect
Am using ASP.Net with C# as front end and SQL server 2008 as back end. Probably i use direct queries to retrieve records from a table and also Stored procedure some times. I mention the command type ...
0
votes
2answers
49 views
Does this code pool SQL connections?
I'm using Essential.Logging's SQL logger. I looked at the source of the library here and saw (at the end)
Everytime you want to log to SQL:
using (var connection = ...
1
vote
0answers
198 views
Visual Studio Entity Framework Designer: Update model from database broken by custom provider
We have decorated the default Entity Framework provider to support custom ExpressionsVisitors. So far everything works out the way we intend it to be.
After adding the custom provider entry into the ...
1
vote
1answer
180 views
Log4net dependency on System.Data.dll when using AdoNetAppender
We have set up log4net within our current project to use the AdoNetAppender to write log entries to a SQL Server database. This all works correctly, but for some reason in order to get it working we ...
3
votes
1answer
285 views
Call GetStoredProcCommand with variable number of arguments in C#?
In my code I am repeating code blocks like this all the time:
var returnData = MyDb.ExecuteDataSet(
MyDb.GetStoredProcCommand("MyTable_Insert", columnOne, columnTwo, columnThree),
transaction
...
2
votes
1answer
226 views
How can i copy data table records of different field name based on mapping list evaluating condition on source data table?
I have a Source Data table of type System.Data.DataTable from which i have to generate Destination Data Table of mapped column(Consider same SqlDBType for mapped columns.)
I have a list of ...
0
votes
1answer
365 views
system.data assembly reference
I am trying to reference System.Data in a MonoTouch application for the iPhone, but am getting the following error:
The type or namespace 'Data' does not exist in the namespace 'System'.
Are you ...
0
votes
1answer
235 views
Datagridview.DataPropertyName = System.Data.DataColumn.?
I have a list of columns
Dim ListCol As List(Of System.Data.DataColumn)
For Each Col As System.Data.DataColumn In Grid.Columns
ListCol.Add(Col)
Next
I need ...
1
vote
3answers
2k views
The type or namespace name 'OracleClient' does not exist in the namespace 'System.Data'
When trying to run my code, I receive the following error:
CS0234: The type or namespace name 'OracleClient' does not exist in the namespace 'System.Data' (are you missing an assembly reference?)
...
0
votes
1answer
93 views
SSAS Stored Procedure throwing permission
I am getting the error
Execution of the managed stored procedure 'mystoredprocedure' failed with the following error: Exception has been thrown by the target of an invocation.Request for the ...
0
votes
2answers
79 views
Use of existing framework ConstraintException for data constraint violations
I have a standalone application that does data checking of flat files before they are imported into a SQL database.
In a context like this, does it make sense to throw a ...
1
vote
1answer
505 views
System.Data.DataSetExtensions doesn't exist in the Mono for Android profile
I have imported a third party .net library into my Mono for Android project that uses the DataSetExtension library. When I try to compile I get the following errormessage:
Error 51 Exception while ...
6
votes
3answers
2k views
System.Data Assembly Not found
I have a reference to System.Data in my windows service project. I keep getting the Exception :
Could not load file or assembly 'System.Data, Version=4.0.0.0, Culture=neutral, ...
2
votes
0answers
231 views
Using System.Data.SqlConnection in mono, Second invalid login attempt results in “object reference not set to instance of an object”
Using mono's System.Data.SqlConnection to try to establish a new connection (via prompt to user for username and password), if the user enters the wrong username more than once i get an exception: ...
1
vote
1answer
1k views
WinRT System.Data - Connect to SQL
Just want to make sure I am not missing something. There does not appear to be a WinRT System.Data. What I am looking for is System.Data.SqlClient to connect to SQL. Can a Metro App connect to SQL? ...
5
votes
2answers
126 views
.NET System.Data namespace decompilation: where can I find the code relating to SQL Server concurrency violations
Where in the .NET System.Data namespace is the code that determines, when the update-command is executed, whether a row in a SQL Server 2K table has been changed after the client program had read it ...
4
votes
1answer
689 views
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?
1
vote
0answers
202 views
System.Data.DataView.Find method: substring starts-with not possible?
Is it possible to use the Find() method of the DataView object to return the index of a row where the column used in the default sort starts with a particular string?
I've been trying various ...
1
vote
1answer
424 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 ...
1
vote
2answers
310 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 ...
0
votes
1answer
744 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 ...
4
votes
4answers
266 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 ...
1
vote
1answer
524 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
1answer
2k 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 ...
1
vote
2answers
69 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 ...
0
votes
1answer
176 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 ...
1
vote
2answers
210 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 ...
2
votes
1answer
1k 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 ...
0
votes
1answer
321 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
136 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
...
1
vote
1answer
300 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 ...
4
votes
2answers
235 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 ...
0
votes
1answer
690 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 ...
2
votes
1answer
3k 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 ...
0
votes
2answers
359 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
512 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 ...
1
vote
3answers
1k 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 ...
3
votes
2answers
3k 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 ...
5
votes
1answer
897 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 ...
1
vote
3answers
284 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
15k 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 ...
0
votes
1answer
220 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
852 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 ...