-1
私はMS SQLと互換性のある次のコードを持っています。 Log4Netを使用してエラーを記録するために使用します。SAP HANAと互換性のあるMS SQL用SAP Business One C#コード
これを正しい構文のようにSAP HANAと互換性を持たせるにはどうすればよいですか?
string connectionString = @"Data Source=server;Initial Catalog=SBODemoUS;Persist Security Info=True;User ID=sa;Password=pass";
appender.CommandText = string.Format("INSERT INTO {0} ([Date],[Thread],[Level],[Logger],[Message],[Exception]) VALUES (@log_date, @thread, @log_level, @logger, @message, @exception)", logTableName);
appender.ConnectionType = "System.Data.SqlClient.SqlConnection, System.Data,Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089";
appender.ConnectionString = connectionString;
私はINSERT文の中で特に興味を持っていますし、appender.ConnectionType