#author("2021-10-20T00:33:10+00:00","default:admin","admin") #author("2021-10-20T00:34:15+00:00","default:admin","admin") -[[プロジェクトを構成するファイル:http://rucio.a.la9.jp/main/technique/vbFiles.htm]] *C#への変換 [#mae425e5] -[[Visual BasicからC#への変換について:https://qiita.com/yaju/items/3afb486bfbbddc1e6aa8]] -[[VB ⇔ C Sharp 変換:https://techinfoofmicrosofttech.osscons.jp/index.php?VB%20%E2%87%94%20C%20Sharp%20%E5%A4%89%E6%8F%9B]] -[[VB.NETをC#に変換してみた時の作業メモ:https://do-gugan.com/~furuta/archives/2017/09/vb-net2c.html]] *DB処理 [#jc360959] -[[SQL Server タイムアウト関連の設定:https://t-nary.nary-systems.com/vb-net/sql-server-%e3%82%bf%e3%82%a4%e3%83%a0%e3%82%a2%e3%82%a6%e3%83%88%e9%96%a2%e9%80%a3%e3%81%ae%e8%a8%ad%e5%ae%9a/]] -[[System.Data.SqlClientによるDBインタフェースのサンプル(VB.NET):http://nonsoft.la.coocan.jp/SoftSample/VB.NET/SampleSqlDbIf.html]] -[[VB.net : SQLExpress : SqlClient を使用した基本的な DB アクセス:https://winofsql.jp/VA003334/infoboard_page.php?mid=dnettool&id=091020123437]] **タイムアウト [#pade480f] -[[ASP.NETで考慮すべきタイムアウト値:https://techinfoofmicrosofttech.osscons.jp/index.php?ASP.NET%E3%81%A7%E8%80%83%E6%85%AE%E3%81%99%E3%81%B9%E3%81%8D%E3%82%BF%E3%82%A4%E3%83%A0%E3%82%A2%E3%82%A6%E3%83%88%E5%80%A4]] -[[What is the difference between SqlCommand.CommandTimeout and SqlConnection.ConnectionTimeout?:https://stackoverflow.com/questions/847264/what-is-the-difference-between-sqlcommand-commandtimeout-and-sqlconnection-conne]] -[[Sql Server : Connection Timeout v/s Command Timeout:http://www.harishrathi.com/sql-server-connection-timeout-vs-command-timeout/]] ***SqlConnection.ConnectionTimeout [#d33f932a] -接続のタイムアウト -規定値:15秒 -0を指定することで無制限になる -指定は設定ファイル(Web.configやiniファイル)、コードいずれも可 ***[[SqlCommand.CommandTimeout:https://docs.microsoft.com/ja-jp/dotnet/api/system.data.sqlclient.sqlcommand.commandtimeout?view=dotnet-plat-ext-5.0]] [#a8f3cf76] -[[SqlCommand.CommandTimeout プロパティ:https://www.weblio.jp/content/SqlCommand.CommandTimeout+%E3%83%97%E3%83%AD%E3%83%91%E3%83%86%E3%82%A3]] -[[Timeout expired error in Visual Basic web app using .Net SQL provider:https://forums.asp.net/t/2117616.aspx?Timeout+expired+error+in+Visual+Basic+web+app+using+Net+SQL+provider]] -SQL実行のタイムアウト -規定値:30秒 -0を指定することで無制限になる -指定はコード上でしかできない(みたい、調査中)