DBNull is a special value in ADO.Net indicating that the value is NULL in the database.
0
votes
1answer
39 views
null / DBNull conversion [duplicate]
i have a method
void addParam(string name, object value);
and an object
public class Foo
{
public string Whatever;
}
what is the best way to perform a (working) call that would match this ...
0
votes
2answers
47 views
Using DBNullable Types
Here's the code:
protected void btnSearch_Click(object sender, EventArgs e)
{
List<STATbatter> completelist = new List<STATbatter>();
DALbatter batter = new DALbatter();
...
1
vote
2answers
79 views
Explain handling DBNull?
I have a nullable DateTime field "BirthDate" the existing code was handeling this in such a way
info.BirthDate = (DateTime?)reader["Birthdate"];
This causes an "Invalid Cast" error and it breaks. ...
0
votes
3answers
84 views
How do I get a value from a database using Oledb, I keep getting a DBNull exception?
int weaponDamage = Convert.ToInt32(dt.Rows[randomItem][2]);
// dt= DataTable
// randomItem = randomly chooses a row from the datatable
That code throws
"InvalidCastException was unhandled, ...
0
votes
1answer
263 views
Gridview null values for datetime in database results Object Can Not be cast from DBNULL to other types error
I am using the gridview control which is connected to my database with an sqldatasource. I can do updates and deletes directly from this gridview.
When I edit a date field and remove the content, ...
1
vote
1answer
139 views
What is the best way to find out whether image column is null or not?
Problem Definition:
I have a table in a SQL Server database. This table has an column of type image and it allows null values. I'm going to read this table using SqlDataReader and show the images if ...
0
votes
2answers
73 views
Handle an object that has error and is not compareable to null or DBnull.value
I have a Class (Entity we call them) Named Person which is mapped to a database Table (Person table). The records of this table may contain null values in all fields but one, the PK.
This is in ...
2
votes
2answers
238 views
Check DBNull in C#
I have a StronglyTyped data Row object and I can access it like this.
accountFilter.Currency_ID
Currency_ID (Type of Int) is the row name. AccountFilter is the DataRow.
When it gives a value, no ...
1
vote
3answers
212 views
dBNull.value and is operator
I am porting a VB2005 web app to VB2008, and running into problems compiling it.
The problem is caused when I try to compile the project, I get this error on the line:
If m Is DBNull.Value...
...
0
votes
2answers
136 views
If conditions based on whether the column value is null or not using linq to entity
I have a table that stores the image file path, now in my code i have some conditions:
var UserQuery =
(from u in DataContext.UserProfiles where u.UserIDfk == currentUserId select u)
...
1
vote
4answers
925 views
avoid checking for DataRow.IsDBNull on each column?
My code is 2x longer than it would be if I could automatically set IsDBNull to "" or simply roll over it without an error.
This is my code:
Dim conn As New SqlConnection
conn.ConnectionString = ...
0
votes
1answer
60 views
How to handle nulls in a repeater?
My page is have issues because some columns values in a row are NULL, how can I only display the value if it is NOT NULL?
<ItemTemplate>
<tr>
...
2
votes
2answers
87 views
Why is this program not entering my ElseIf statement — System.DBNull
I imported an Excel file into an ASP.NET DataTable. Some of the values are blank, specifically at indexes 2 and 3, and I would like to set those blank fields to 0.
When debugging, the values for ...
0
votes
1answer
474 views
LINQ CopyToDataTable — Cannot cast DBNull.Value to type 'System.Decimal'. Please use a nullable type
I am parsing two Excel files that contain many fields, most importantly TOTAL_DOLLARS and TOTAL_UNITS fields, that often have values, but some of them are left blank, or null. I want to JOIN these ...
0
votes
0answers
140 views
User can't delete DateTime in old infragistic ultragrid
I'm working on an older application now which uses infragistics Ultragrid v3.1.
In the ultragrid the user can enter a date (with mask _/_/___). If there is allready a date in the cell and the user ...
0
votes
0answers
153 views
Best Way to Return non-“Nothing” Data from SQL Server to .NET Application
I commonly use the SqlDataAdapter class to retrieve data from SQL Server for consumption in a .NET application. Almost as commonly, while traversing the returned DataSet I often hit null object ...
0
votes
2answers
420 views
Convert dbnull to string. Record dbnull.value in database instead of Nothing
I have an insertRecord function in vb.net that uses a parameter query. If there is no error date given, I need to insert dbnull.value into the db instead of ""(Nothing).
Dim strErrorDate2 As DateTime ...
1
vote
3answers
135 views
A first chance exception of type 'System.InvalidCastException' occurred in mscorlib.dll Object cannot be cast from DBNull to other types
Hi all I am reading data from sql server using stored procdure, and everything looks excpet when there is a null data in the database I get cannot cast DBNull to other types. I am using .net MVC3 ...
3
votes
3answers
498 views
How to manage parsing an null object for DateTime to be used with ADO.NET as DBNULL
I have two DateTime objects, BirthDate and HireDate. They are correctly formatted as a string and when I pass them through to my data access layer, they need to be parsed into a DateTime object.
...
1
vote
1answer
55 views
How can I make sure empty textboxes text are entered into the db as DBNull?
I have an array of 18 textboxes, how can I specify which textbox is empty so that I can pass through DBNull into my parameters to my database access layer? I am using OleDb with Ms Access
0
votes
0answers
158 views
LINQ vb.net Not IsDBNull
I have the following query that is supposed to filter out null values in the given groupfield but unfortunately returns an empty object when the source dataset contains null values in that field:
Dim ...
0
votes
1answer
47 views
how do you set a defaultparametervalue of null for optional parameters?
So i have a chunk of code like this:
public List<DynamicBusinessObject> GetSearchResultList(Search search, List<CategoryAttribute> listCatAttrib, string sortBy, int startRow, int ...
1
vote
4answers
2k views
Write Null in Database if the TextBoxes are Empty
All I want to do is to insert Null with the database when the textbox is empty.
--ACCOUNT
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
...
0
votes
0answers
121 views
Dynamic Data required validation behavior on Text_Edit.ascx field template
I have noticed odd behavior in Dynamic Data regarding non-required, nullable text fields.
I have a DB field MiddleName which is nullable and not required. In my DBML mapping, it comes over as
...
1
vote
2answers
170 views
How to find out which Columns are nullable in a DataTable?
Is there a way to find out which columns are nullable in a DataTable?
I know that there is a proprety: DataColumn.AllowDBNull, which can be set to true or false in the design mode of the DataSet, but ...
0
votes
2answers
1k views
Vb.net Convert Integer DBNULL to 0 - error
I'm having this method:
Private Function convertInteger(intInteger As Object) As Integer
If IsDBNull(intInteger) Then
convertInteger = 0
Else
convertInteger = ...
3
votes
3answers
2k views
Passing DBNull.Value and Empty textbox value to database
I have some textboxes on my page which can be empty because they are optional and I have this DAL code
parameters.Add(new SqlParameter("@FirstName", FirstName));
parameters.Add(new ...
0
votes
0answers
99 views
can a DataRelation match on Null values
I want to use a DataRelation to count the number of matches between two DataTables for a given set of columns. So I add the tables to a DataSet and create the relation:
ds.Tables.Add(parentDataTable)
...
0
votes
2answers
552 views
How to handle all DBNulls without checking for them every time (with a generated DataSet)? [duplicate]
My original question was, as @nicholas correctly pointed, a little misleading, because this case is a little specific.
So here's the real problem:
I created Windows Form Application with ...
1
vote
2answers
479 views
Dynamic Linq to Datatable Nullable Fields
I am using the c# Dynamic Linq library for writing custom queries against a data table. The problem I am having is that when I'm trying to perform summary operations on fields that have nulls I am ...
0
votes
1answer
311 views
Oracle UDT (SdoGeometry) insert DBNull.Value fails
I am writing some sort of sync mechanism between a remote Oracle DB and a local Oracle XE DB using ODP.NET. The table i am syncing has a spatial column (and therefore a User Defined Type, ...
0
votes
5answers
231 views
Does foreach have else?
I have foreach to show the result from myquery, it works when the result isnt null. and I want to know does the foreach have else? to take action when the result from myquery is null?
var rs = from ...
0
votes
3answers
103 views
how to handled null exception in Db.SingleDecimal?
c = new TableCell();
decimal pembayaran = Db.SingleDecimal("Select (valuta) from ArInvoice where customerID='01');
c.Text = Cf.Num(pembayaran);
c.Attributes["style"] = "text-align: right;";
...
0
votes
2answers
3k views
Implicit conversion from data type nvarchar to varbinary(max) is not allowed
I get this exception when I try to insert a DBNull.Value into a nullable varbinary(max) field:
Implicit conversion from data type nvarchar to varbinary(max) is not allowed. Use the CONVERT function ...
0
votes
1answer
270 views
Update many flag columns given the value of other columns (NULL values) in the same record
Given a table of input data I would like to have a set o "flag columns" that describe sibling columns of the same record.
I am using Microsoft SQL Server 2005.
First of all I need to load data in ...
2
votes
2answers
1k views
RAILS: DB MIGRATION: resetting id column to auto_increment
When I created the table users, the resulting table had a column called id, defined as an integer.
I tried to modify it to bigint, unsigned as follows:
change_column :users, :id, :integer, :limit ...
2
votes
4answers
690 views
Cast a null into something?
I had this interesting discussion today with a colleague. We were debating two pieces of code in c sharp.
Code Snippet 1:
if(!reader.IsDBNull(2)
{
long? variable1 = reader.GetInt64(2)
}
Code ...
0
votes
3answers
3k views
Cannot implicitly convert type 'decimal?' to 'decimal'.
sdr is my sqldatareader and I want to check that the curPrice value which is of type decimal is null.
inrec.curPrice = sdr.IsDBNull(7) ? (decimal?)null : sdr.GetDecimal(7);
This is the error ...
0
votes
7answers
1k views
DBNull if statement
I'm trying to execute a stored procedure and then use an if statement to check for null values and I'm coming up short. I'm a VB guy so please bare with me if I'm making a schoolboy syntax error.
...
2
votes
1answer
187 views
What is VB.NET's equivalent of C#'s default keyword? [duplicate]
Possible Duplicate:
Bug?? If you assign a value to a nullable integer via a ternary operator, it can't become null
While this question may seem like a duplicate of many, it is actually ...
-3
votes
2answers
291 views
DB Null conversion
I have written a relatively big insert statement, and some of the fields are null.
I cannot convert from db null to other types and I don't really want to check Convert.IsDBNull for every single item
...
1
vote
2answers
809 views
using datareader with dbnull values in .net4
I heard there is a field extension method in framework 4 that permits one to receive null values from a datareader, without having to go through the process of first testing if not null then ... etc. ...
3
votes
3answers
88 views
Is it bad to have a column empty as NULL often in a table?
Is it bad to have a column empty as NULL often in a table?
comment table
comment_id member_id user_id
1 1 NULL
2 1 NULL
3 1 ...
2
votes
9answers
756 views
How to safely cast nullable result from sqlreader to int?
I have a table which contains null values and I need to get data from the table using SqlDataReader. I can't figure out how I can safely cast DBNull to int.
I'm doing it in this way at the moment:
...
0
votes
1answer
271 views
Treating null field as zero for an update query
I'm using the SQL Express 2010 query builder. I need to be able to increment a field.
In my behind code, I make a call such as
tableAdapter.IncrementLikeCount(id);
If I just use an increment, the ...
1
vote
3answers
2k views
Oracle 11g odp.net driver issues with Null value
I am having issues comparing null values with oracle 11g odp.net driver. It works fine with oracle 10g odp.net driver. If a column is null in the database, then in datarow it has a string value of ...
2
votes
3answers
969 views
Why can't I insert DBNull.Value into a nullable image-field in sql server 2005?
Why can't I insert DBNull.Value into a nullable image-field in sql server 2005?
I tried this code:
SqlConnection conn = new SqlConnection(@"Data Source=.\sqlexpress;Initial ...
0
votes
2answers
1k views
SQL Server Update DateTime type to null
Since it's friday my brain must have malfunctioned.
I'm trying to update a column of the type DateTime with the good ol' OleDb, the update always run (changing other column values on the same row) ...
1
vote
3answers
136 views
VB.NET: How do I use coalesce with db column values and nullable types? Or is there a better solution?
I'm trying to do something similar to what's described here, but with nullable types.
http://www.csharp-station.com/Tutorials/Lesson23.aspx
int availableUnits = unitsInStock ?? 0;
In VB, it would ...
3
votes
1answer
3k views
Converting a DBNull to boolean when binding to checkbox in a detailsview control
This is kind of silly but I have a DetailsView that binds to a record in my database using a sqlDataSource. My problem is that the field I'm binding to is a bit field, (i,e 1 or 0) that at present ...


