Click here to Skip to main content
15,898,939 members
Home / Discussions / Database
   

Database

 
GeneralRe: text , ntext datatypes ( PLEASE HELP ) Pin
abdelhameed814-Oct-06 21:51
abdelhameed814-Oct-06 21:51 
GeneralRe: text , ntext datatypes ( PLEASE HELP ) Pin
Mark Salsbery5-Oct-06 6:26
Mark Salsbery5-Oct-06 6:26 
AnswerRe: text , ntext datatypes ( PLEASE HELP ) Pin
Jerry Hammond5-Oct-06 4:20
Jerry Hammond5-Oct-06 4:20 
QuestionDelete Row Count Pin
Skanless4-Oct-06 9:21
Skanless4-Oct-06 9:21 
AnswerRe: Delete Row Count Pin
Edbert P4-Oct-06 16:45
Edbert P4-Oct-06 16:45 
QuestionColumn Length Pin
Guinness4Strength4-Oct-06 7:50
Guinness4Strength4-Oct-06 7:50 
AnswerRe: Column Length Pin
Mark Salsbery4-Oct-06 10:56
Mark Salsbery4-Oct-06 10:56 
GeneralRe: Column Length Pin
Guinness4Strength4-Oct-06 11:00
Guinness4Strength4-Oct-06 11:00 
Yes, the length limit can be seen in the "Design Table" dialog of the SQL Server Enterprise Manager for the table in question. Its a VARCHAR(50) column, but after I query this tabkle the DataTable's DataColumn has a MaxLength value of -1

Here is the code i use to Query the Table if that helps...
DataTable DT = new DataTable();
if(m_DB is SqlConnection)
{
	m_DA = new SqlDataAdapter(Query,(SqlConnection)m_DB);
	m_CB = new SqlCommandBuilder((SqlDataAdapter)m_DA);
	((SqlCommandBuilder)m_CB).QuotePrefix="[";
	((SqlCommandBuilder)m_CB).QuoteSuffix="]";
	((SqlDataAdapter)m_DA).Fill(DT);
}

GeneralRe: Column Length Pin
Mark Salsbery4-Oct-06 11:49
Mark Salsbery4-Oct-06 11:49 
QuestionMs access and Scope identity Pin
Vipin.d4-Oct-06 2:12
Vipin.d4-Oct-06 2:12 
AnswerRe: Ms access and Scope identity Pin
Alaric_4-Oct-06 19:45
professionalAlaric_4-Oct-06 19:45 
QuestionProblem in Implementing DataAccess Mechanism Pin
Jay_se4-Oct-06 0:45
Jay_se4-Oct-06 0:45 
AnswerRe: Problem in Implementing DataAccess Mechanism Pin
Jay_se5-Oct-06 19:04
Jay_se5-Oct-06 19:04 
QuestionUrgent :: SQL Server Connection Problem Pin
harshActsw3-Oct-06 11:41
harshActsw3-Oct-06 11:41 
AnswerRe: Urgent :: SQL Server Connection Problem Pin
mr_lasseter3-Oct-06 13:45
mr_lasseter3-Oct-06 13:45 
QuestionDesign Issue: Multiple definitions of ADO.NET abstraction classes [modified] Pin
Alaric_3-Oct-06 10:00
professionalAlaric_3-Oct-06 10:00 
AnswerRe: Design Issue: Multiple definitions of ADO.NET abstraction classes Pin
Eric Dahlvang4-Oct-06 3:41
Eric Dahlvang4-Oct-06 3:41 
GeneralRe: Design Issue: Multiple definitions of ADO.NET abstraction classes Pin
Alaric_4-Oct-06 18:32
professionalAlaric_4-Oct-06 18:32 
GeneralRe: Design Issue: Multiple definitions of ADO.NET abstraction classes Pin
Eric Dahlvang5-Oct-06 4:10
Eric Dahlvang5-Oct-06 4:10 
QuestionType of table generated is system Pin
Sushant Duggal3-Oct-06 2:15
Sushant Duggal3-Oct-06 2:15 
AnswerRe: Type of table generated is system Pin
Colin Angus Mackay3-Oct-06 5:31
Colin Angus Mackay3-Oct-06 5:31 
Questionradio button in data grid control Pin
abdelhameed813-Oct-06 2:06
abdelhameed813-Oct-06 2:06 
AnswerRe: radio button in data grid control Pin
mr_lasseter3-Oct-06 13:47
mr_lasseter3-Oct-06 13:47 
QuestionGenerating the INSERT script Pin
Brendan Vogt3-Oct-06 1:28
Brendan Vogt3-Oct-06 1:28 
AnswerRe: Generating the INSERT script Pin
Colin Angus Mackay3-Oct-06 5:28
Colin Angus Mackay3-Oct-06 5:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.