Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008


all groups > dotnet ado.net > december 2003 > threads for friday december 19

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

ReadOnly
Posted by Christian Ista at 12/19/2003 11:39:37 PM
Hello, I have a some TextBox bind to Access database via DataAdapter and DataSet. I'd like not allow edition, edition will be available via an "Edit" button. Is there an another way than change the ReadOnly property of these TextBox to false (because the background color change) to not all...more >>

is there any standard way to.. Data Types
Posted by Daniel Bello Urizarri at 12/19/2003 8:44:45 PM
Hi: Is there any standard way to ask for the data types on a data base: Something like: SELECT * FROM INFORMATION_SCHEMA.DATA_TYPES to get something like: char, int, image, varchar, money.... So later I can do something like: CREATE TABLE NewTable (NewField _Field_Type_...more >>

Query Performance Problems with OracleClient OracleParameters
Posted by biff_gaut NO[at]SPAM hotmail.com at 12/19/2003 8:20:43 PM
Hello, I am querying an Oracle database using the Microsoft Oracle Data Provider for .NET and I am seeing significant performance penalties when I us parameter based queries rather than pure text dynamic SQL. Below is an actual query that demonstrates the problem - the first query, which emb...more >>

How do I insert a NULL value inside an INSERT statement
Posted by Dino M. Buljubasic at 12/19/2003 8:16:35 PM
How do I insert a NULL value inside an INSERT statement in an SQL Server database? Thank you, Dino -- ------------------------------------------------------------------------- FIGHT BACK AGAINST SPAM! Download Spam Inspector, the Award Winning Anti-Spam Filter http://mail.gi...more >>

Connection String Storage?
Posted by grawsha2000 NO[at]SPAM yahoo.com at 12/19/2003 7:28:33 PM
Hi, what will be the place to store connection string properties (server name and db)? .Net know offers other good alternatives to the registry. MTIA, Grawsha...more >>

understanding IsolationLevel
Posted by Zeng at 12/19/2003 2:55:12 PM
Hello, Would someone out there point me to a place where I can get a good understanding of when to use which IsolationLevel in SqlConnection.BeginTransaction()? I read it from a couple of places but none gave me some sort of guidelines when to use which. At this point, I do my datalayer read...more >>

how to get return valued from stored procedure?
Posted by Linda Chen at 12/19/2003 12:22:16 PM
I have problem to get return valude from my stored procedures. For example, if I insert a polygon and want to get the return primaty key genrated by @@IDENTITY, I have my stored procedure here: REATE PROCEDURE dbo.sp_Add_Polygon_i @Name as varchar(30) , @Area as float, @Prima...more >>

SQL formatting variables
Posted by Andreas_HÃ¥kansson at 12/19/2003 12:14:39 PM
I have a set of variables (varies in type) which I will need to take and make "SQL-safe", that is, if the variable is a string i need it to be converted to 'string' and if it's a bool then it should be coverted to 0 or 1 etc etc.. The reason for this is that I need to build a query dynamicly a...more >>



SQL connection string containing server name no longer connects since framework 1.1 installed.
Posted by twsmks NO[at]SPAM bellsouth.net at 12/19/2003 11:34:07 AM
Since upgrading to .Net Framework 1.1 I can no longer connect to my local sql server using a sql connection string that contains the actual server name (Error: SQL Server does not exist or Access Denied). If I use (local) or localhost as the server name then the connection is made. Does anyone k...more >>

best practicies to validate a DB data
Posted by Fabiano at 12/19/2003 10:29:23 AM
Please, i need to develop an webservice wich deploy a method that must do lots of validation on a database. What can i do? 1. Create an Stored Procedure and inside of it validate everything and return a error code to method and to user or 2. Create lots of Stored Procedures wich one valida...more >>

Not able to edit Oracle data using Server Explorer
Posted by Sacha Korell at 12/19/2003 9:34:12 AM
I'm sure this has been discussed here many times before, but I just can't seem to find a thread with information regarding this. In a connection to an Oracle database using the MS OleDB Provider for Oracle, I used to be able to see Database Diagrams, Tables, Synonyms, Views, Stored Procedures,...more >>

Passing Parameters to Access Query
Posted by idpa NO[at]SPAM earthlink.net at 12/19/2003 8:58:57 AM
Help!!!!!!! Does anyone know where I can find documentation on how to pass parameters to an access query from a Web page using VB.net code? Any Examples, etc would help! Thanks in Advance Lea...more >>

SqlException while Connecting to mySQL
Posted by djcee NO[at]SPAM cox.net at 12/19/2003 7:49:09 AM
Dear Group, I have a C# client connecting to a remote mySql database and I'm getting the following exception: Unhandled Exception: System.Data.SqlClient.SqlException: SQL Server does not exi st or access denied. at System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransac...more >>

Viewing data from many tables
Posted by Jakub Konecki at 12/19/2003 7:03:18 AM
Hello! I have a following problem. I have a dataset with many tables, with master-detail relations. I want to display in a DataGrid a view, that is composed from many columns from many tables (ie. Col1, Col2 from Table1 and Col2, Col3 from Table3 ). I don't want to use a navigation featur...more >>

DataReader and Returned Parms
Posted by Jim Heavey at 12/19/2003 6:36:59 AM
I have found that I am unable to read the parms until after I do a close on the DataReader. Is that accurate? In the instance where you are executing a procedure which returns multiple answer sets, would this still be true? So if I wanted to get the return value for each of the answer set...more >>

populate dataset using collection
Posted by Jaaz at 12/19/2003 3:25:46 AM
Can any one point to a code in which a dataset is populated with a collection....more >>

Accessing Remote MSAccess Database with ADO.Net
Posted by wsabir NO[at]SPAM yahoo.com at 12/19/2003 3:12:24 AM
Hi, How can I connect to an access database located over a remote server through internet? Is it possible if updating a remote database is done in background and application doesn't affect by delay in accessing remote Server? Best Regards, Wasim...more >>

ComboBox Values!
Posted by Lora Connors at 12/19/2003 12:52:12 AM
I would like my ComboBox to display the 'CustomerName' value but it should store the 'CustomerID' value whenever it is assigned to the DataTable.LoadDataRow. Also, I need to trap the 'CustomerID'value in the ComboBox_SelectedIndexChanged Event whenever that event is fired. Thanks! ...more >>


DevelopmentNow Blog