The notnull tag has no wiki summary.
0
votes
2answers
20 views
“Where” method with “not nil” checking
How can I check if my variable is not nil when I use the "where" method ?
I tried these on a Product model that has a borrower_id field, but it didn't worked properly :
> ...
0
votes
1answer
29 views
not-null error although generated value
I am using hibernate 3.6.3 and have a column in my bean which is annotated by one of the following ways (tried both and none worked):
@GeneratedValue(strategy = GenerationType.AUTO)
or
...
0
votes
2answers
67 views
mysql query do not selected null columns
I am fetching some results using
$result=mysql_query("SELECT * FROM mobiles");
this mobiles table has got 9 columns as
id,name,imei1,imei2,imei3,imei4,imei5,qty,price
some of the imei fields ...
0
votes
1answer
39 views
mySQL Force Not Null using Query or phpMyAdmin
Im using XAMP with mySQL and phpMyAdmin.
I cant seem to work out how to set a column to NOT NULL in php my admin..
How do i do this?
Is there a quick way to set all columns not to be null in mySQL?
...
0
votes
1answer
46 views
Drop rows of pandas dataframe that don't have finite values in certain variable(s)
I cannot see what the built-in function is for the following simple but seemingly common/useful task: Drop rows which have no value for any of my key columns.
def ...
1
vote
1answer
143 views
scala slick - complex function in select clause
I have a join table that holds the id of 'a', 'b' and a couple of Option[Long] related to the a<->b relation. I'd like to query it like this:
select a_id, sum(longField is not null) from a_b_info ...
0
votes
0answers
26 views
not null not working and getting error close() never explicitly called on database [duplicate]
Can someone help. ive been creating an app, and so far my data is successfully saving to the database however, the not null doesnt seem to be working at all, as i can submit blank values and they save ...
0
votes
1answer
94 views
MySQL LENGTH() > 0 and NOT NULL not getting expected results
Viewing my result set, I see a blank field despite my conditions.
I tried selecting:
SELECT column
FROM table
WHERE LENGTH(column) > 0 AND column IS NOT NULL
i also tried:
WHERE LENGTH(column) ...
0
votes
0answers
703 views
Oracle - Error: 'ORA-01400: cannot insert NULL into
I'm trying to insert a record into a table, but getting the error -
'ORA-01400: cannot insert NULL into (....'. The table structure is:
I migrate from Mysql to Oracle.
On Mysql this works, but ...
0
votes
1answer
193 views
Mysql does not error on insert or update to null value on not null field
I have a table
CREATE TABLE `devicelist` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(15) COLLATE utf8_unicode_ci DEFAULT NULL,
`serial` varchar(100) COLLATE utf8_unicode_ci ...
0
votes
1answer
121 views
How to have a fixed size not null varchar with OrmLite?
When declaring a String property in a Poco class, OrmLite will generate a varchar(8000) NULL column for it in the database. for e.g. I have the following class and the generated table for it:
I ...
0
votes
1answer
44 views
In Hibernate Validator, how can the method validation tell the caller that the return value may be null?
The method validation in Hibernate Validator can tell callers that the return value is @NotNull, but how can I tell the caller that the return value might be null? In Findbugs, I have @CheckForNull, ...
2
votes
1answer
103 views
“column” IS NOT NULL in query does not throw error when column does not exist
In my PHP unit tests, I am using an SQLite in-memory database, which contains the following table:
CREATE TABLE "battlegroup_request" (
"id" INTEGER NULL PRIMARY KEY AUTOINCREMENT,
...
0
votes
1answer
105 views
what is default value of field in shared preferences?
Today I encountered a really strange problem in Android.
I am using 2 fields with shared preferences. One is deviceId and second is Hashkey.
Now first I store only deviceId in sharedprefs, using code
...
0
votes
0answers
31 views
How to use cfqueryparam and NOT NULL
i have 2 queries and i want to use tag on it but am not sure how to do it for this query:
<cfif isdefined("FORM.chk3g")>
ThreeG IS NOT NULL AND
</cfif>
<cfif ...
-1
votes
1answer
56 views
How to get the column name of the CANDIDATE Keys through jdbc?
I need to find candidate keys of a table. As for a column to be a candidate key,
it must be (1) NOT NULL and (2) UNIQUE. So what I am doing is:
for(i=1;i<colcount; i++){
if( ...
2
votes
1answer
521 views
SQL Server: set varchar to not null when column size is unknown
I'm trying to create a script that when run against a DB takes a column and sets it to NOT NULL.
The column is supposed to be a VARCHAR(50), and if I knew it hadn't been changed this would be a piece ...
0
votes
0answers
43 views
Primary keys (PK) and its composition does not match the requested?
Sorry, I'm starting with SQL and I'm not very good. I have given this problem to solve
Given the database schema attached, proposed the creation of a sentence following tables:
SALES ...
1
vote
2answers
143 views
Oracle sql - assign value to nulls or keep value if not null
I have this task where I need to assign a value if the value is null.
if its not null then I want to keep the value that is already there..
(this is what is stumping me) I know its got to be easy..
...
2
votes
1answer
65 views
How do I mark a method as “afterwards, parameter X cannot be null”?
I have this method:
@Override
public void foo( @Nullable Bar bar ) {
Validate.notNull( bar, "bar is null" );
bar.x();
}
Since the method is defined elsewhere, I can't mark bar with ...
0
votes
3answers
2k views
SQL Column definition : default value and not null redundant?
I've seen many times the following syntax which defines a column in a create/alter DDL statement:
ALTER TABLE tbl ADD COLUMN col VARCHAR(20) NOT NULL DEFAULT "MyDefault"
The question is: since a ...
0
votes
2answers
155 views
T-SQL Replace part of a not null column with NULL generates error
I have table variable and all its columns can not be null (NOT NULL definition for each):
DECLARE @SampleTable
(
,SampleColumnID nvarchar(400) NOT NULL PRIMARY KEY
,SampleColumnText ...
1
vote
1answer
176 views
Eclipse @NonNull annotations with Maven and Jenkins
I would like to use the new @NonNull annotation from Eclipse Juno but the project I'm working on is based on Maven and is deployed with Jenkins.
Is there any way that my annotations won't break the ...
2
votes
2answers
403 views
Oracle “Cannot update to NULL”
I have this query on Oracle 10g:
UPDATE "SCHEMA1"."CELLS_GLIST"
SET ("GLIST_VALUE_ID", "USER_ID", "SESSION_ID") = (
SELECT "GLIST_VALUE_ID", 1 AS "USER_ID", 123456 AS "SESSION_ID"
FROM ...
0
votes
0answers
38 views
Inversed FK with NOT NULL required
I am trying to model a database where I have 2 inverted foreign keys which both tables fields are required NOT NULL. How can I model that?
Here a small sample:
I have two tables called the first is ...
0
votes
2answers
614 views
Hibernate Many-to-One mapping with not null constraint
I have a many-to-one mapping and not null constraint on the column. i am getting the exception column is Null while saving. Can anybody please suggest how do i use cascade and inverse in this ...
3
votes
1answer
138 views
Need clarification on the meaning of Resharper NotNullAttribute
Consider the following code:
public static void Foo()
{
Bar(null);
}
public static void Bar([NotNull] string s)
{
if (s == null)
throw new ...
0
votes
1answer
417 views
Hibernate Annotation Bidirectional relationship cascade delete with non null foreign key
When performing a delete on an Order(the parent), hibernate is trying to cascade delete the children. Instead of just deleting the children first, it is attempting to null out the foreign keys, then ...
1
vote
4answers
2k views
Sql Conditional Not Null Constraint
I am curious to know is it possible to create a conditional not null constraint in sql? In otherwords is it possible to create a constraint such that a column B can be null as long column A contains ...
0
votes
1answer
77 views
Do I need to add a constraint in MySQL to specifically not allow empty values from appearing in a not null column?
I wrote schema:
CREATE TABLE user
(
user_id INT UNSIGNED AUTO_INCREMENT NOT NULL,
fname VARCHAR(20) NOT NULL,
lname VARCHAR(20) NOT NULL,
email VARCHAR(30) NOT NULL,
password VARCHAR(60) NOT NULL,
...
2
votes
1answer
142 views
MySQL: does “NOT IN()” function not allow 'NULL' values in the reuslt set..?
I have a simple table on my local server.
mysql> desc table ;
+-------+---------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
...
0
votes
2answers
49 views
UITextField strange behaviour for blank checking
I've a UITextField say txtTitle. I want to check for not blank of that field at the time of inserting data into database.
For that I written
if(![txtTitle.text isEqualToString:@""])
{
//Save
}
...
9
votes
1answer
3k views
Ruby on Rails: How do I add a not null constraint to an existing column using a migration?
In my Rails (3.2) app, I have a bunch of tables in my database but I forgot to add a few not null constraints. I've googled around but I can't find how to write a migration which adds not null to an ...
0
votes
1answer
259 views
MySQL - How Do I Count Nulls and Not Nulls?
I have a simple table of installs:
prod_code
email
install_slot
If the install_slot is NULL, then it's an available install slot. Not null -- then, used slot. I need to return a result of total ...
4
votes
1answer
89 views
Where does the processing of an annotation happen?
I've been reading about annotations lately, and I'm a bit confused. I've used the annotation @NotNull but I don't really know how it checks if the variable is not null. No where in the code do I see ...
0
votes
2answers
153 views
Prepare bind a blank value (not a null value)
I need to insert a blank (foo="") into my database, but when I do:
bindParam(':foo','',PDO::PARAM_STR);
bindParam(':bar','bang',PDO::PARAM_STR);
And look at the table, bar=bang, but foo is null. I ...
0
votes
1answer
100 views
How can Django be configured not to default fields to not null?
How can Django be configured not to default fields to not null?
Django defaults all fields created to NOT NULL. Can it be configured to do the opposite, except in the obvious case of key fields?
0
votes
2answers
129 views
Not null column in MySQL and integrity check
In MySQL 5.1.48 database I have table with NOT NULL column 'name'. When I update the value of the column to NULL, error with yellow exclamation mark (using MySQL Query Browser) is reported and the row ...
1
vote
1answer
148 views
null and not null mysql
Hi I have started moving access into mysql and I was wondering if there is a constraint or something I could use to be able to make a column not null and still have empty values in it?
This is not my ...
4
votes
2answers
3k views
SQL Not Empty instead of Not NULL
I am using postgreSQL. I have a column that:
NOT NULL
However when I want to insert a row with an empty string as like:
''
it doesn't give me an error and accepts. How can I check insert value ...
0
votes
2answers
175 views
how to configure postgres not to show not null constraint error
I'm installing openbravo. The install log shows a heap of SQL errors which are all "not null" constraints errors.
I already searched quite a while for how to fix this, but they only say how to drop ...
5
votes
4answers
6k views
Select all if parameter is null in stored procedure
I want to create a procedure in SQL Server that will select and join two tables. The parameters @company, @from and @to are always set but @serie_type can be NULL. If @serie_type is not NULL i just ...
0
votes
2answers
4k views
Check a record IS NOT NULL in plsql
I have a function which would return a record with type my_table%ROWTYPE, and in the caller, I could check if the returned record is null, but PL/SQL complains the if-statement that
PLS-00306: ...
3
votes
2answers
1k views
Select distinct multiple field without NULL
I have a table with Value ID and Value
--------------
| id | value |
--------------
| 1 | NULL |
--------------
| 1 | A |
--------------
| 2 | NULL |
--------------
| 2 | NULL |
...
0
votes
0answers
1k views
“PropertyValueException: not-null property references a null or transient value” and “AssertionFailure: null id” if Child's field is @NotNull
I've set up a basic Parent/Child example with Seam 2 and Hibernate. I'm using Hibernate natively and I set up manual flushing.
The example consists of 2 entities: Parent and Child, which only hane ...
2
votes
2answers
6k views
Make a column nullable DB2
I'm using db2 version 9.7* and it seems impossible to make a NOT NULL column nullable in any straightforward way.
Unfortunately the solution of using a more developer friendly database is not ...
0
votes
3answers
2k views
“Cannot insert the value NULL into column” when trying to update a column in SQL
I am trying to update values of a column which is not null using the query below
update Bom set CountryCode=
case
when CurrencyId='CHF' then 'CH'
when CurrencyId='NZD' then 'NZ'
when ...
0
votes
1answer
397 views
Merge two tables ON DUPLICATE KEY UPDATE only if new value is not null
I have to merge two tables and update on duplicate key only if new value is not null.
I tried the code below with no success
Can anyone help?
Thanx!
INSERT
INTO table1
SELECT * FROM temp
...
1
vote
1answer
762 views
Insert Null value To an inet field in postgresql
I am trying to insert values to a table which contains two columns with inet types. When I try to insert a null value to these columns I get an error saying
ERROR: invalid input syntax for type ...
0
votes
3answers
591 views
LINQ: throwing exception when Null is returned to a string? Attribute on a class?
i have a linq query which i am selecting into a string, of course a string can contain null!
So if there a way i can throw an exception within my linq query, if i detect a null?
Can i decorate my ...



