Windows error 0x80131920, -2146232032

Detailed Error Information

COR_E_Data[1]

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code6432 (0x1920)

Questions

1vote
2answers

How to merge two datatables with PrimaryKeys?

I have two data tables and want merge columns and create as third table. //Given dt1 {A(PK),B,C,D} dt2 {a(PK),b,c,d} //Want dtResult {A,B,C,D,a,b,c,d} Do not want to lose ExtendedProperties so not Selecting DataColumn.ColumnName and adding as columns. Code: DataTable dt1 = new DataTable(); dt1.TableName = "dt1"; dt1.PrimaryKey = new DataColumn[] { [...] read more
c#
.net
datatable
0votes
0answers

DataSet Merge with ignore case senstivity

We are working on an existing application that uses SQL Server. And now we migrated the SQL Server database from SQL Server to PostgreSQL. PostgreSQL has all the table names and their columns to lower case. But we are still using the same code which we used for SQL Server. [...] read more
c#
postgresql
xsd
dataset
0votes
1answer

Asp.net MVC5 How can I shorten the URL of item so that It uses less space on database . I get the following error

Problem description: As an example Ebay link Can be shortened to https://www.ebay.com/itm//263591535536, so that it takes less space on the database . I try to capture the full url in Razer page and then in the Controller I try to shorten it . Then I get the validation error . [...] read more
asp.net
asp.net-mvc-5
0votes
0answers

How to merge structure of two DataTables into one c#?

I have two data tables and want merge columns and create as third table. Do not want to lose ExtendedProperties so not Selecting DataColumn.ColumnName and adding as columns. Code: DataTable dt1 = new DataTable(); dt1.TableName = "dt1"; dt1.PrimaryKey = new DataColumn[] { dt1.Columns.Add("A") }; dt1.Columns.Add("B"); dt1.Columns.Add("C"); dt1.Columns.Add("D"); DataTable dt2 = [...] read more
c#
.net
datatable
nullreferenceexception
0votes
1answer

I can't save a foreign key into one to many table asp.net but data can be inserted asp.net mvc 5

i have two tables aspNetUser and Tutorial i want a registered aspNetUser to to be able to create a tutorial and i want return the tutorial data to their page and other pages but i am strugling with saving the tutorial with the aspNetUser'id, i have been looking at one [...] read more
asp.net
asp.net-mvc
model-view-controller
-1votes
1answer

System.Data.EvaluateException HResult=0x80131920 Message=Cannot perform '=' operation on System.Int32 and System.String

public void MatchedDocumentsInFileCabinet(string MainFolder, string SubFolder, string FileName, string FilePath) { // Checking Main Folder is present in FileCabinet, if present retrieving MainFolderID if not Inserting MainFolderName if (SelectedFileCabinetID == "") { SelectedFileCabinetID = "1"; } int Mainfoldercount = 0; DocSortResult getfolderdetails = objFolderManager.GetFolderDetails(); DataTable getFolderNames = new DataTable(); if [...] read more
c#

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0