I am using oledb to create excel sheets.
I use create table to create a excel sheet.
This creates a new sheet, as well as add the column names in first row of the sheet.
I want to add a title before this first row how can I do that ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
now execute an update query
Update F1=’new value’ where F1=’old value’
in above because of the HDR=no, the column names are available as data row, executing update allowed changing row. Here F1 equals first column and so on.