Click here to Skip to main content
15,927,699 members
Home / Discussions / Database
   

Database

 
QuestionExport a table to a CSV file Pin
Alvin Ortiz5-May-06 12:46
Alvin Ortiz5-May-06 12:46 
AnswerRe: Export a table to a CSV file Pin
Rob Graham7-May-06 6:07
Rob Graham7-May-06 6:07 
GeneralRe: Export a table to a CSV file Pin
Alvin Ortiz15-May-06 12:27
Alvin Ortiz15-May-06 12:27 
QuestionOutputting RTF from SQL Reporting? Pin
dxben5-May-06 5:54
dxben5-May-06 5:54 
QuestionInstr function for SQL Pin
MatthysDT5-May-06 1:54
MatthysDT5-May-06 1:54 
AnswerRe: Instr function for SQL Pin
sathish s5-May-06 2:07
sathish s5-May-06 2:07 
QuestionSQL or TSQL Help Needed Pin
Naveed Kamboh5-May-06 0:42
Naveed Kamboh5-May-06 0:42 
AnswerRe: SQL or TSQL Help Needed Pin
sathish s5-May-06 1:36
sathish s5-May-06 1:36 
GeneralRe: SQL or TSQL Help Needed Pin
Naveed Kamboh5-May-06 2:03
Naveed Kamboh5-May-06 2:03 
QuestionReg Stored Proc Parameter usage & performance Pin
Pradeep Shamarao4-May-06 23:15
Pradeep Shamarao4-May-06 23:15 
QuestionMSDE and MS SQL 2005 Express Edition inquiry Pin
Kuira4-May-06 13:35
Kuira4-May-06 13:35 
AnswerRe: MSDE and MS SQL 2005 Express Edition inquiry Pin
Paul Conrad4-May-06 14:37
professionalPaul Conrad4-May-06 14:37 
QuestionClone rows based on existing rows Pin
Ravi Bhavnani4-May-06 11:42
professionalRavi Bhavnani4-May-06 11:42 
AnswerRe: Clone rows based on existing rows Pin
goyal manish4-May-06 20:12
goyal manish4-May-06 20:12 
GeneralRe: Clone rows based on existing rows Pin
Ravi Bhavnani5-May-06 8:47
professionalRavi Bhavnani5-May-06 8:47 
QuestionCheckBox Control and RowID Pin
karinb4-May-06 5:41
karinb4-May-06 5:41 
AnswerRe: CheckBox Control and RowID Pin
Paddy Boyd4-May-06 5:56
Paddy Boyd4-May-06 5:56 
AnswerRe: CheckBox Control and RowID Pin
goyal manish4-May-06 20:18
goyal manish4-May-06 20:18 
QuestionOle DB for OLAP Pin
Tarek Jabri4-May-06 4:50
Tarek Jabri4-May-06 4:50 
QuestionODBC error: [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'dbo.sysconstraints' Pin
thomasa4-May-06 3:39
thomasa4-May-06 3:39 
AnswerFixed Pin
thomasa4-May-06 23:50
thomasa4-May-06 23:50 
QuestionSQL 2005 Analysis Services - pivot table Pin
alex_kl4-May-06 3:22
alex_kl4-May-06 3:22 
QuestionWhy can't I update my data ? Pin
nirishere4-May-06 2:47
nirishere4-May-06 2:47 
AnswerRe: Why can't I update my data ? Pin
jonathan154-May-06 5:06
jonathan154-May-06 5:06 
I think row.remove just removes the row from the datatable. If you want to remove it from the underlying database you need to call row.delete which wont remove it from the datatable but marks it as deleted.

This is all to do with the datatables getchanges method where you can call getchanges passing the deleted parameter to get a list of all the rows deleted (marked as deleted and will be deleted when you call the update method on the dataadapter). Removed rows are completely removed and therefore cannot be deleted when you call the dataadapters update method.

Jon
GeneralRe: Why can't I update my data ? Pin
nirishere4-May-06 7:20
nirishere4-May-06 7:20 

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.