0

Is it possible in C++ Visual studio that I can connect to SAP Database, write data to it ?

For example, I'm doing a facial recognition project and it's already done, but the remaining part is to connect SAP and write the Face ID of the user to the HR database plus the time stamp.

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
andre_lamothe
  • 2,171
  • 2
  • 41
  • 74

1 Answers1

0

Ahmed, first you need to determine what the database your SAP system is running on, doesn't sound like you know so get that information first so you can get the right driver. Then the answer to your question is, yes. Create a connection using your driver first to connect to the server and database you are trying to update, you'll need to get the server name, database name and database credentials for your DBA, then in Visual Studio go to View > Server Explorer to add access to your new connection and then write your SQL to update insert you records.

The second part, yes if you write to the database tables properly it will show up in SAP.

SAP Pro
  • 397
  • 2
  • 8