all groups > dotnet ado.net > april 2008 > threads for april 8 - 14, 2008
Filter by week: 1 2 3 4 5
Open Source Typed DataSet Generator
Posted by Mythran at 4/14/2008 10:03:40 AM
Drawing a blank, even googling some keywords and still gives me either too
much or too little. Basically, anyone know of any custom open source typed
dataset generators for use with the 3.5 framework? I am looking for a
generator that exposes the column properties as public instead of
inte... more >>
ADOMD client
Posted by benny.watt@gmail.com at 4/14/2008 2:40:45 AM
I have a webserver talking to a different server hosting SQL 2005. The
webserver seems to need the ADOMD client on it..
Is this a seperate install? If so, is it free to install or is there
licence issues?
help is appreciated.... more >>
SQL Coalesce in Linq syntax
Posted by Dean Slindee at 4/13/2008 9:40:05 PM
How would the following SQL Coalesce statement need to be written in Linq to
SQL:
SELECT COALESCE(LastName, '') + ' '
+ COALESCE(FirstName, '') + ' '
+ COALESCE(MiddleName, '') + ' '
+ COALESCE(SuffixName, '') AS ClientName,
ClientID
FROM tblClient
WHERE LastName LIK... more >>
Datatable equivalent code with OleDbDataReader
Posted by John at 4/13/2008 3:27:52 PM
Hi
I have below code which is written using a datatable dt. What is the
equivalent code using a OleDbDataReader?
For j = 0 To dt.Rows.Count - 1
Dim dataArr(dt.Columns.Count) As String
For i = 0 To dt.Columns.Count - 1
dataArr(i) = dt.Rows(j)(i)
Next
Next
Thanks
Regard... more >>
OleDbDataReader to datatable
Posted by John at 4/13/2008 3:09:51 PM
Hi
Sorry, I am new to this. Is there a way to cerate a datatable from a
OleDbDataReader?
Thanks
Regards
... more >>
error that occur in StoredProcedure it's cause exception or not?
Posted by mttc at 4/12/2008 12:11:37 PM
error that occur in StoredProcedure it's cause exception or not? and
when I need to use with @@error?... more >>
Designer generated code fails to compile
Posted by Pat Moran at 4/11/2008 6:20:01 AM
I have a project whose default name space is Wearther and form in the project
which is in this default namespace. I have also generated a dataset and
adapters to access a table in a database. I am using as a datasource this
dataset via the generated DatasetBindingSource.
The problem is tha... more >>
export to csv
Posted by John at 4/11/2008 2:51:15 AM
Hi
Is there a way to export the records from a datareader into a csv file?
Thanks
Regards
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Calling a form in second project
Posted by John at 4/10/2008 8:25:14 PM
Hi
Can I run a from in one project from a second project, both projects being
in the same solution?
Thanks
Regards
... more >>
(oracle) problem with variable in 'in' condition
Posted by lilysdream@gmail.com at 4/10/2008 2:07:06 AM
Hi everybody !
I have a problem with a Select procedure in package.
I have a condition like :
select .....
from ....
where blahblah in (myvariable)..
'myvariable' is like : 1001, 1002, 1003, ....
I have an exception with the OracleDataAdapter : ORA-01002: fetch out
of sequence
do ... more >>
Varbinary col in datatable
Posted by Aurin at 4/9/2008 10:24:00 AM
Using SQL Server 2005, Visual Studio 2005 (8.0.50727.762) Framework 2.0.50727
SP1
I have a varbinary column in my database. I am trying to set the
DataColumn.DataType in the dataset designer to byte[] but it is not in the
selection list. I tried changing it in the xxxxx.Designer.cs file b... more >>
How to to handle a set that had a row added and then deleted before Adapter Update?
Posted by Jason at 4/9/2008 10:08:46 AM
I have a scenario where I am processing a batch of changes to a table. The
changes can result in an Insert or a Delete. So I Fill a DataSet with the
table's current contents, then I process the changes, then call Update on my
SqlAdapter. Psuedo Code:
Fill(DataSet, MyTable)
Foreach( Stateme... more >>
linqdatasource runtime connection string
Posted by Chuck P at 4/9/2008 7:37:00 AM
I want to set the connection string to use at runtime for my linqsql
datacontext.
I am using the dbml or mapper in Visual Studio.
The way I created objects was by dragging objects from the server explorer
onto the design surface.
When I dragged the first object it made a connection string i... more >>
SqlParamater where type=SqlDbType.VarChar allows a size of -1!!!
Posted by BillDoorNZ@gmail.com at 4/8/2008 3:01:54 PM
I've just finished writing some unit tests to test some SqlParameter
functions I created for a DAL helper class. I have included the base
version of the method below. One of the tests I wrote is a boundary
test and checks to make sure a size of -1 throw an
'ArgumentOutOfRange' exception. For som... more >>
Anyone know of a Silverlight newsgroup?
Posted by Brian K. Williams at 4/8/2008 12:56:57 PM
I am looking for a Silverlight newsgroup, I can't find one on
news.microsoft.com.
Thanks
Brian K. Williams
... more >>
|