Tagged Questions
The constraint tag has no wiki summary.
9
votes
4answers
116 views
How to specify types not allowed in a .NET Generics constraint?
Is it possible to specify a constraint on a generic class that disallows certain types? I don't know if it is possible and if it is, I am not sure what the syntax would be. Something like:
public ...
7
votes
3answers
123 views
Reflection over Type Constraints
In class and method definitions, it's possible to add type constraints like where T : IFoo.
Is it possible to reflect over those constraints with System.Type or MethodInfo? I haven't found anything ...
6
votes
4answers
313 views
How to impose, in a C# generic type parameter, that some operators are supported?
I am recently working on a C# class library implementing an algorithm. The point is that I would like the users of the library to be able to choose the machine precision (single or double) the ...
6
votes
2answers
329 views
Force generic interface implementation in C#
Is there anyway to force a constraints for a generic definition to implement a "generic interface" ... that is, I want the class to support passing an interface and a generic class constraining it so ...
5
votes
4answers
2k views
How to handle JPA unique constraint violations?
When a unique constraint is violated, a javax.persistence.RollbackException is thrown. But there could be multiple reasons to throw a RollbackException. How can I find out that a unique constraint was ...
5
votes
1answer
608 views
Can I name my constraints with JPA?
When I use the maven-hibernate3-plugin (aka hbm2ddl) to generate my database schema, it creates many database constraints with terrifically hard-to-remember constraint names like FK7770538AEE7BC70 .
...
4
votes
5answers
135 views
Named CONSTRAINT benefits
I'm learning SQL and stumbled about CONSTRAINT. I can define them like this:
CREATE TABLE products (
product_no integer,
name text,
price numeric CHECK (price > 0)
);
and like this:
...
4
votes
2answers
972 views
ADO.NET CommandBuilder, InsertCommand and Default Constraints
I ' am copying data from table A to table B.
Table B has a nullable column that has a default constraint value of 0.
In general I set values of columns using the following accessor.
public object ...
4
votes
2answers
105 views
Generic in type constraint
I'm struggling with some generics.
The following is my setup:
interface I<T> { }
[...]
void Add<T>(T obj) where T : I<??> { }
How can I ensure that T in the Add method implements ...
4
votes
5answers
360 views
SQL: how to enforce that only a single column is set in a group of columns
In SQL, is there a way to enforce that only one column out of a group of columns has a value, and the others are null? Maybe a constraint or trigger? This type of thing might be for a lookup table, ...
3
votes
4answers
52 views
SQL Server - 'NOT NULL' Constraint redundant on Primary Key?
In the below SQL code is 'NOT NULL' redundant since f_ID is a primary key and thus can't be null for any record?
CREATE TABLE t_Activities(
f_ID varchar(50) NOT NULL,
PRIMARY KEY (f_ID))
3
votes
5answers
83 views
Oracle SQL, Looking for ideas on a constraint
Ok, an example
I have a table with Class, Teacher, and Leader rows,
Class and Teacher are Numbers, and Leader is a Boolean (really just a Char(1))
The table represents a relationship between ...
3
votes
2answers
215 views
Why generic extension method with constraint is not recognized as extension method? [closed]
Possible Duplicate:
No type inference with generic extension method
Consider two methods:
public static IEnumerable<V> Merge<V>
(this ...
3
votes
2answers
164 views
Generic Type Constraint to accept only Numbers? [closed]
Possible Duplicates:
C# generic constraint for only integers
Generics - where T is a number?
In c#:
Imagine a case that we have a functionality over a generic type in which conceptually ...
3
votes
1answer
1k views
Oracle: get table name by constraint name
Oracle constraint name is known.
How find out table name for which this constarint applied?
thanks.
3
votes
1answer
159 views
python-constraint: setting a constraint dependent on a function's output
I've been making a system that takes in data about drivers, potential passengers and their locations, and attempts to optimise the number of passengers that can get a lift with a driver given some ...
3
votes
2answers
175 views
Using comparison operators, such as '!=' and '==', with generics constrained as value in C#
I have the following code:
class Foo<T> where T : struct
{
private T t;
[...]
public bool Equals(T t) { return this.t == t; }
}
When I try to compile, it gives me the following ...
3
votes
4answers
372 views
When dropping a constraint will the supporting indexes also be dropped?
I am trying to memorize some sql syntax and I have gotten the ALTER TABLE ADD CONSTRAINT syntax down. I believe I am correct when I say that when you use this syntax to add a FOREIGN KEY or PRIMARY ...
3
votes
1answer
818 views
Declaring a default constraint when creating a table
I am creating a new table in Microsoft SQL server 2000 by writing the code instead of using the GUI, I am trying to learn how to do it "the manual way".
This is the code I am actually using, and it ...
3
votes
2answers
495 views
Is it possible to set a unique constraint as a foreign key in another table?
Is it possible to set a unique constraint as a foreign key in another table?
If yes, how would you go about declaring it?
How would you go about assigning a candidate key?
Is it possible?
Sorry, I'm ...
3
votes
1answer
959 views
Unique constraint with 'ignore case'
How to specify custom constraint for Django model?
Like that
create table t
(
login varchar(10),
unique ( upper(login) )
);
3
votes
4answers
2k views
How can I constrain multiple columns to prevent duplicates, but ignore null values?
Here's a little experiment I ran in an Oracle database (10g). Aside from (Oracle's) implementation convenience, I can't figure out why some insertions are accepted and others rejected.
create table ...
3
votes
3answers
155 views
SQL Constraints Question
In Sql Server 2005, I have a table with two integer columns, call them Id1 and Id2.
I need them to be unique with in the table (easy enough with a unique index that spans both columns). I also need ...
2
votes
1answer
54 views
“Forcing” Conformance to a Generic Constraint
I have a class, Target<T> that cannot be altered, with a generic constraint. I want to possibly build instances of that class from a generic class that has no constraint. The following ...
2
votes
2answers
56 views
How to determine a database constraint violation in java?
I am relying on the database to tell me if there is a uniqueness violation so I would like to know when the exception I am getting is some sort of constraint violation. It looks like this is exactly ...
2
votes
1answer
42 views
drop index or constraint without knowing its name for Oracle
On a oracle database I have a foreign key, without knowing its name, just the column_name and the reference_column_name.
I want to write a sql script which should drop this foreign key if it exists, ...
2
votes
2answers
34 views
Error message when dropping constrain
Every time I want to drop a constraint from a column I get an error. I can't see the problem. I am using postgres.
So I have created a table with two columns:
CREATE TABLE TableA(
person_id INT ...
2
votes
2answers
77 views
Is it OK to rely on an SQLiteConstraint and let SQLite do the checking for me? Is there a catch?
Hi and happy new year!
I have an SQLite database in Android and I use a ContentProvider to handle the operations, which are persisted to a table with a UNIQUE qualifier in a column.
Problem:
...
2
votes
4answers
146 views
How do I constrain a template parameter to comply to a Key in std::map?
I have a class template that intends to use its parameter K as the key to a map.
Is there any way to restrict the template parameter to be a type that complies with the Key in std::map?
I realize ...
2
votes
2answers
64 views
Learn more about the nature of a constraint?
A piece of legacy code I'm running that does some oracle SQL is violating a constraint called REF_REQUEST.
I look up this constraint by doing:
select * from all_constraints where ...
2
votes
4answers
33 views
create table constraint in mysql
I have a table in which I have some columns a,b,c and for every column there is another column ,say, (x,y,z) which is dependent on a,b,c respectively.
x,y,z will have value 1 if a,b,c has any value ...
2
votes
1answer
40 views
constraining a table field -> not duplicate value, not a primary key
How to constrain a column in my table so it can't have two or more
similar values at a time and it isn't a primary key ?
Should I use CHECK or CONSTRAINT or ... ? what's the right way to ...
2
votes
1answer
32 views
Oracle naming not null constraints?
I was just wondering if it is possible to name your NOT NULL constraints on columns? Like you can with a check constraint.
Thanks,
Alex.
2
votes
2answers
101 views
JPA/Hibernate, @OneToMany and constraints (Oracle)
I have the following scenario:
@Entity
class A {
@Id
@GeneratedValue
private long dbId;
@OneToMany ( cascade = CascadeType.ALL )
@JoinColumn( name = "A_ID", referencedColumnName = "DBID" ...
2
votes
3answers
56 views
Model Constraint Validation
Given a generic tree based (Java) data model. Let's say
abstract class XModel {
long id;
XModel parent;
}
class ProjectModel extends XModel {
String customer;
}
class FileModel extends ...
2
votes
3answers
277 views
Hibernate annotation Cascade problem
I have a Java class that contains a list of another class.
@Entity public class Country {
private Long id;
private List<Hotel> hotels;
public void setId(Long id) {
this.id = id;
}
@Id
...
2
votes
2answers
145 views
Casting one generic to another, without class constraints
I have the following code:
public interface IDrilldown
{
void AddCriteria<T>(T Criterion);
}
public class MyClass<W> : IDrilldown // where W : class
{
void ...
2
votes
1answer
161 views
Orphan constraints in SQL Server database
Running the following query results in all constraints in our client's database. However, several rows in the result set don't seem to have a parent, i.e. parent_object_id = 0 and ...
2
votes
7answers
103 views
How can I make sure there is just one row with a null value in a certain column within a table?
I have a table with a column which contains a 'valid until' Date and I want to make sure that this can only be set to null in a single row within the table. Is there an easy way to do this?
My table ...
2
votes
2answers
80 views
Constraint with Primary Key
Is there a difference between these two create table snippets? One includes CONSTRAINT keyword, other does not.
CREATE TABLE [dbo].[Person](
[ID] [bigint] NOT NULL,
[Name] [varchar](255) NOT ...
2
votes
2answers
523 views
Setting up foreign key constraint in MySQL for use with Yii framework
So -- I have two tables that I'm trying to relate: tournament and match. They can be outlined as followed:
tournament
-id (int)
-league (varchar)
-status (varchar)
...
2
votes
1answer
258 views
How can I use 'Check' statement to validate field value in mysql?
How can I use 'Check' statement to validate field value in mysql ?
look at this page , in the manual didn't discussed about check keyword
in MySql Workbench and Navicat for mysql, there is not ...
2
votes
0answers
188 views
Use a IRouteConstraint or ActionFilterAttribute when validating session data against route data
I've been implementing a RouteConstraint recently whos responsibility is to Match a custom route value against some model data that is in the session.
What I've found is that the session is null for ...
2
votes
4answers
95 views
How to place unique contraint on multiple column
EmpID DeptID
1 1
1 2
2 1
3 2
4 5
5 2
1 1
2 1
I would like to have a constraint that will make sure that the pair of field is always unique ,such data as last ...
2
votes
2answers
1k views
ASP.NET MVC regex route constraint
I'm having trouble with a specific constraint I'm trying to set up on a route. My URL must look like this one: http://hostname/id-my-title-can-be-that-long where id is composed with digit only and the ...
2
votes
2answers
213 views
Is there a way in oracle to disable/enable an unnamed constraint?
I want to disable NOT NULL constraints into a table to insert data for test but I can't find a way to disable unnamed constraints.
I found enough info to disable named constraints, but I couldn't ...
2
votes
1answer
125 views
Foregin key constraint error but shouldn't be occuring
I have a list table with 5 entries in it, the first column in the identity column (PK), within a parent table is a column that is related to this list table by ID (FK). I am using C# in a web app to ...
2
votes
1answer
305 views
SQL Server 2008: Check constraints that guarantees that only one value in all rows is set to 1 and others are 0
There is a need to build constraint on the column that guarantees that only one value in all rows is 1 and all the others are 0.
Solution with triggers exists but I would like to have something built ...
2
votes
2answers
119 views
SQL Constraint/trigger - Is it possible to write a constraint that checks “when you Insert a record it must contain one of two fields”?
Is it possible to have a constraint/trigger on a record being entered that checks if the user has entered at least one of three fields (all of which can be null). For example, I have a database being ...
2
votes
3answers
94 views
C#. Is is possible to have a static generic class with a base type constraint that has a method with a further base type constraint
I'd like to be able to create a static generic type with a base type constraint like
public static class Manager<T> where T : HasId
{
public static T GetSingleById(ref List<T> items, ...