The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
77 views

mudflap throws core dump when using new() operator to allocate memory

Here is my code snippet. int main() { int *var = new int(6); cout<<"Hello\n"; delete var; return 0; } when compiled with mudflap as $export MUDFLAP_OPTIONS="-print-leaks ...
0
votes
1answer
48 views

Unhandled exception at Access violation writing location [duplicate]

I am trying to write a simple reverse string program and getting the above error. I am unable to understand what I'm doing wrong. void reverse(char *str) { char *end, *begin; end = str; begin = str; ...
0
votes
0answers
27 views

JPA annotation and ConstraintViolationException

This question is being asked/mentioned over and over but I could not find if I am doing something wrong or that the problem is "real": I have an entity class for a simple Oracle table in which there ...
-1
votes
0answers
33 views

Hardware running gpl code [closed]

Let's say I am selling hardware that uses the linux kernel. Do I have to state somewhere that it is running linux(or other gpl code)? The reason I am asking this is because I bought a television, ...
0
votes
1answer
98 views

What does access violation mean?

I'm new to C++ and do not understand why I am getting the error "Access Violation Reading Location". Here is my code: gdiscreen(); int startX = 1823 - minusX; int startY = 915 - minusY; for (int i = ...
0
votes
2answers
57 views

XAudio2 Access Violation Exception when Unloaded

I am trying to use the XAudio2 audio system to play a looping sound asynchronously. It functions, but when the DLL is unloaded (the code here is inside of a DLL loaded by another program), I get an ...
-2
votes
2answers
89 views

Access violation reading location 0xba2f1498

I am coding a programming to watch folder. I use FileWatch.h library. This is my FileWatch.h #ifndef FILEWATCH_H #define FILEWATCH_H class FileChangeObserver { public: virtual ...
0
votes
2answers
161 views

Java Mysql Integrity Constraint Violation Exception

My Swing applications throws few exceptions. I tried to catch Integrity Constraint Violation Exception and display message "Duplicate ID". But when that happened, without catching it here: ...
-2
votes
1answer
113 views

Access violation reading location 0xCCCCCCCC

I have problem with my program I don't know what to do :( double spocitaj(FILE *fr,double **polsum, int *cena){ int r=0, i=0,k=0; double n=0; char c; while((c=getc(fr))!=EOF){ if(c=='\n') ...
0
votes
2answers
148 views

Security Sandbox Violation Flash AS3

I'm trying to play a Youtube video through my flash project. The video plays but I get the error below and it ruins the rest of my project. I couldn't find anywhere that had this exact error. Ive been ...
0
votes
1answer
136 views

cakephp duplicate key value violates unique constraint

Ok ... i have set my postgres database populated and all constraints applied. OS ... i ran cake bake all on all tables and start to test. I got this error: Error: SQLSTATE[23505]: Unique violation: ...
0
votes
1answer
75 views

Unique constraint violation with single character insert

I have a unique constraint on a SQL server 2008 database table, with the constraint containing 4 columns. While entering in some test data, I unexpectedly received a unique constraint violation. For ...
0
votes
1answer
139 views

C++ Creation of a Singleton object in initializer list causes an Access Violation (only Release Mode)

I do see a (for me) strange Access Violation exception. I'll try to reduce the problem as much as possible. I have a class A and a singleton object sing_. The code looks somehow like that: class A { ...
0
votes
2answers
173 views

Qt Application throws an Access violation exception during startup

I have a Qt Application that works in Debug mode without any problems. Since two days I'm trying to make it work in Release mode. After some Project property modification I managed to compile without ...
0
votes
0answers
123 views

Key violation in CancelUpdates

I have a problem with Dataset in master/detail mode. I'm using Delphi XE with update 1, DBExpress and Firebird 2.5.2 I have a master/detail relationship between tow tables (CDS), defined with ...
0
votes
2answers
97 views

ITK access violation error in release mode but not in debug mode while reading DICOM files

Well I know many have this problem of Release VS. Debug mode. I have searched a lot and went through stack trace of my program and checked pointers. However, I cannot understand why do I get Access ...
1
vote
0answers
168 views

The underlying connection was closed: The server committed a protocol violation

I am developing an application in C# for accessing the FTP files and downloading them too. I am using "FtpWebRequest" class for the same. But while executing an application throwing an error as given ...
0
votes
0answers
19 views

Can increase in column for an already existing composite uniquekey ever lead to constrain violations?

Unique keys are constructs of permutation rather than combinations! - therefore as long as there exists an enforced unique key constraint on a given column and as long as that column remains in new ...
-5
votes
1answer
44 views

Reporting copyright violation [closed]

I wanted to report a copyright violation on facebook, but there is no option to report it. There is a page who has uploaded a photo taken by me without asking for a permission and without informing ...
0
votes
1answer
67 views

Identity insert few records without truncating to an existing table

I would like to insert data from a table which is in A server from the B server. ex: select count(*) from A.table -- 100 rows affected delete from A.table where customer_code = '100' -- 10 rows ...
0
votes
1answer
672 views

(doctrine2 + symfony2) cascading remove : integrity constraint violation 1451

First, sorry for my poor english... I got four entities : User, Application, Bundle & Entity. Here are their relations (with cascading persist & remove, see code below) : User 1-n ...
0
votes
4answers
59 views

C - Reading File Error.. !f_in is null and dont know why?

// Trying to read file void readFilee(char *namefile){ FILE *f_in = fopen(namefile,"r"); char x; int i = 0; if(!f_in){ printf("Error"); exit(0); } /* read to EOF */ ...
0
votes
1answer
380 views

Drupal 7 node_save Integrity constraint violation

I have to update some nodereference fields from custom code in myModule. This has to be done when a new node of a particular type is being inserted so I implemented hook_node_insert as follows: ...
3
votes
0answers
98 views

Microsoft.Interop.Security.AzRoles.AzAuthorizationStoreClass.Initialize fails with System.IO.FileLoadException

Our ASP.NET web application uses Authorization manager. On a page of this web application, the authorization store which is a local XML file on the server is accessed many times to perform access ...
0
votes
2answers
636 views

(Firebird) Foreign key reference target does not exist

I need to synchronize data in two tables from different Firebird databases. Precisely, I need to update records in table Person (1st DB), using records from table Users (2nd DB). Not only "name", ...
0
votes
0answers
32 views

Possible to check for class members in Spring bean classes?

To me, one of the most difficult thing to catch in production environments is when class members (i.e. Static) are falsly declared in bean classes instantiated by the Spring container. Is there a way ...
0
votes
4answers
349 views

Foreign key constraint error when saving product

$product = Mage::getModel('catalog/product'); // Build the product $product->setStoreID($store_id);//Store Id $product ...
2
votes
1answer
428 views

Fix for Innodb Integrity constraint violation: 1452

What Innodb query can I use to correct the following problem? SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails ...
0
votes
1answer
132 views

Sonar displays violation messages in another language than Sonar default locale

After upgrading Sonar 2.10 to Sonar 3.2, some violation messages are displayed in another language than Sonar default locale. In my case, Sonar default locale is set to "en" in the general ...
1
vote
1answer
320 views

PK violated in oracle sql

I wonder if anyone can help me with this. I ran the whole thing in sql but its gives me this error: Error report: SQL Error: ORA-00001: unique constraint (GAMES.ATHLETE_PK) violated 00001. ...
1
vote
1answer
294 views

Entity Framework Foreign Key violation with Save_Changes

This goes around the delightful scenario in which Entity Framework refuses to allow the programmer the ability to change the order in which data is saved... End Results: When I try to save my changes ...
0
votes
0answers
32 views

PMD Eclipse plug-in show violation for modified files/lines

Pmd Eclipse plug-in, Is there any option to set pmd violation only for modified lines/files. Not for whole java project.
1
vote
1answer
55 views

Will sharing the same photo on flickr and facebook using my app violate facebook TOS? [closed]

I was going through the facebook policy instructions at http://developers.facebook.com/policy/ and section 12 (b) was interesting. It says that "Apps on Facebook may not integrate, link to, promote, ...
0
votes
0answers
46 views

Access Violation in <vector> using SSE2 instructions in MVC++ [duplicate]

Possible Duplicate: SSE and C++ containers I implemented the following code for a basic interval class using SSE2 instructions: #include <emmintrin.h> class interval { private: ...
1
vote
1answer
258 views

How to store tree structure via JPA?

I would like to store a tree structure via JPA. The model consists of two entity classes: Tree and Vertex. Class Vertex basically contains just the vertex' name, class Tree a mapping named parents ...
3
votes
1answer
80 views

MySql Access Violation or Syntax Error.

I'm getting the following error when I try to execute the sql statement below it. SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that ...
2
votes
1answer
155 views

Not Sure How To Use ADO .Properties(“Partial Bulk Ops”)

As the title says.. I see the documentation on ADODB .Properties, but I'm not really sure how to use it. I need to temporarily enable the Execute to ignore key violations (aka only import one, as the ...
0
votes
3answers
1k views

Constraint violation / Duplicate key when reindexing Magento

I am using Magento CE 1.6.2 and I have a problem with my reindexer ( the url_rewrite ) php shell/indexer.php --reindex catalog_url Catalog URL Rewrites index process unknown error: exception ...
0
votes
2answers
413 views

JNI exception access violation

at the moment i´m trying to play around with JNI. My Java-Code : public class test{ static{ System.loadLibrary("wakeup64"); } public static native boolean setWakeupTime(Date date); public ...
0
votes
0answers
909 views

Unhandled exception, access violation writing location

I'm writing a program in C++ using Visual Studio 2012. The program requires two devices to be connected to it: a pressure sensor and driver that controls a motorized platform. The program worked fine ...
0
votes
0answers
270 views

Hibernate: WARN: SQL Error: 23503, SQLState: 23503

i have two entities, 1. @NotNull @ManyToOne(optional = false, cascade = CascadeType.ALL, targetEntity = Currency.class) @JoinColumn(referencedColumnName = "CURRENCY_CODE", insertable = true, ...
0
votes
1answer
160 views

Access violation reading from random access file in c++

This part of the program that I'm making is supposed to print out all the records stored in a random access binary file. Every time I run it, it prints out all of the records and then throws an ...
0
votes
2answers
70 views

Is narrowing of overriden method arguments types a Liskov Substitution Principle violation?

I have this code: abstract class Entity { // blah-blah-blah } abstract class BaseCollection { public void add(Entity entity); } And I derive from the Entity and BaseCollection classes: class ...
1
vote
0answers
403 views

The server committed a protocol violation. Section=ResponseStatusLine" For PHP webservice when the previous access returns less than 10 rows of data

I've a problem with accessing a php web service from my asp.net code. I am doing a search that goes into the php webservice and it will require a few access. However, whenever a call to a webservice ...
1
vote
0answers
157 views

MSSQL - replication and Violation of PK constraint

I've setup a transactional replication and allowed initialize from backup due to bandwidth restraints (so no snapshots generated). Now we get this error on the Publication database, when the ...
0
votes
1answer
176 views

mysql foreign key violation on 2 levels of many-to-one relation

I have 3 tables, a Child, a Parent, and a GrandParent. Child has a column (parentId) pointing to Parent (many-to-one relationship). Parent has a column (grandParentId) pointing to GrandParent ...
0
votes
4answers
83 views

How is this not a Java visibility violation

It is a simple implementation of linked list to split one list into two sublists. Other details have been discarded for simplicity class SList { private head; Object item; public void ...
0
votes
0answers
260 views

Flex Sandbox Violation when crossdomain.xml already exists

I am using Flex Builder 3, flex framework 3.6, and publishing to flash player 9 (can't find the specific version). We just created a .net webservice, which I am using in flex. It all works great ...
0
votes
1answer
186 views

In Ado.Net Update winth transaction “Concurrency violation”

I write on MySQL 5.5, C#, ADO.NET, DataSet. I have a DataSet and DataAdapter filled it. In DataAdapter I override INSERT, UPDATE, DELETE commands. When I use stored procedures, as these commands, all ...
0
votes
1answer
313 views

org.hibernate.exception.ConstraintViolationException can not be catched in JBOSS 6

I am developing an web application by using Spring MVC 3.0.This application gets deployed on JBOSS 6. Problem statement is - Whenever org.hibernate.exception.ConstraintViolationException occurs, The ...

1 2