SQL Server OLE DB - select data from DB using RowSet [closed] - sql-server

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I want to ask how to select data from DB using OLE DB CRowSet in C++. How to access specific row, specific column etc. like in ADO .NET using DataTable. Can you give me some tutorial please?
Thanks

This article was helpful for me:
http://www.codeguru.com/cpp/data/mfc_database/oledb/article.php/c1119/OLE-DB-Templates---A-light-and-simple-Data-Access-Method.htm

Related

Unable to update readonly database. I am using Interbase Database for local hosting using there IBConsle and IBServerManager [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 days ago.
Improve this question
I am trying to update a studnet record database.
Application is build using RAD studio in C++
I tryig giving all the permision in the file manager to all the Users and also Grant permision to INSERT UPDATE DELETE to all users in IB Console.
I just wanted to insert data in my database

How to transfer data from SQL Server to Excel [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
The orders table is the sales invoice information.
Transferring this information from SQL Server to Excel is possible with a query.
There is a data transfer wizard method to transfer in the
data, but I have to do it with C# code or T-SQL query.
Why do you have to make it with T-SQL or C#?
You can make with SSIS package and call that from C# or T-SQL.
If that is possible, I suggest trying it.

How to insert or delete query with jobs in SQL Server? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I want to insert or update or delete in database automatically after cross a time e.g 8 hours.
Is it with jobs in SQL Server?
Thanks.
You can create a SQL Server job with TSQL code in it and schedule this job as appropriate.

SQL Server Management Studio Setting [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
How to enable the more accurate help, please ?
Because I have this :
Some time ago I have wondered the same thing, as I expect to receive information similar to this one:
REPLACE(string_expression NVARCHAR, string_pattern NVARCHAR, string_replacement NVARCHAR)
Unfortunately, there are very only a few options related to intellisense in SSMS:
and you cannot change the way function information is displayed.
Sorry, I found...
SQL Complete do that job. I thought it was a SQL Server Management Studio option.
With SQL Complete :

Failed to update database "Adventure Works 2012" because the database is read-only [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Failed to update database "Adventure Works 2012" because the database is read-only. using sql server 2012
You are being incredibly vague with your question but you should be able to use:
ALTER DATABASE [AdventureWorks] SET READ_WRITE

Resources