sql >> データベース >  >> RDS >> Sqlserver

SQL Server データベースでイメージの場所を保持する方法は?

    アプリケーションでは、ユーザーがファイルを選択できるように「OpenFileDialog」を使用する必要があります。以下の例を参照してください:

    Dim ofd As New OpenFileDialog
    ofd.Filter = "*.png|PNG|*.jpg|JPEG" 'Add other exensions you except here
    ofd.Title = "Choose your folder"
    'ofd.InitialDirectory = "c:\SomeFolder..." 'If you want an initial folder that is shown, otherwise it will use the last folder used by this appliaction in an OFD.
    If ofd.ShowDialog = Windows.Forms.DialogResult.OK Then
        'Something = ofd.FileName 'Do something with the result
    End If
    

    ofd.FileName の結果を保存します。 あなたのテーブルで。これが、選択したファイルのフル パスと名前になります。




    1. MySQL PI()関数–π(pi)の値を返します

    2. コマンドラインを使用してMySQLテーブルの外部キーを変更する方法

    3. ストアドプロシージャのCASEステートメントにMysqlケースが見つかりません

    4. SQL Server 2008でselect whereを使用して1つの列で重複を見つける