小编sef*_*sef的帖子

从SQL Server获取数据库列表

如何获取SQL Server实例上的可用数据库列表?我打算在VB.NET的组合框中列出它们.

sql-server

351
推荐指数
9
解决办法
74万
查看次数

如何从SQL服务器解密密码?

我在sql server 2000中有这个查询:

select pwdencrypt('AAAA')
Run Code Online (Sandbox Code Playgroud)

它输出加密的'AAAA'字符串:

0x0100CF465B7B12625EF019E157120D58DD46569AC7BF4118455D12625EF019E157120D58DD46569AC7BF4118455D

如何从其原点(即'AAAA')转换(解密)输出?

sql-server encryption passwords hash

16
推荐指数
3
解决办法
27万
查看次数

通过VB.NET创建/编辑文本文件

我如何在VB.NET中编写以下算法?

Procedure logfile()
{
    if "C:\textfile.txt"=exist then
        open the textfile;
    else
        create the textfile;
    end if  
    go to the end of the textfile;
    write new line in the textfile;
    save;
    close;
}
Run Code Online (Sandbox Code Playgroud)

vb.net text-files

7
推荐指数
2
解决办法
7万
查看次数

如何将加密的字符串保存到数据库?

我在VB.net"ENCRYPT"中有这个功能(见下文)

Private key() As Byte = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24}
Private iv() As Byte = {65, 110, 68, 26, 69, 178, 200, 219}

Public Function Encrypt(ByVal plainText As String) As Byte()
    ' Declare a UTF8Encoding object so we may use the GetByte 
    ' method to transform the plainText into a Byte array. 
    Dim utf8encoder As UTF8Encoding = New UTF8Encoding()
    Dim …
Run Code Online (Sandbox Code Playgroud)

vb.net

5
推荐指数
1
解决办法
2093
查看次数

获取SQL Server组中可用服务器的列表

如何提取SQL服务器组中的可用SQL服务器列表?我打算把这个列表放在VB.NET的组合框中.

sql vb.net

3
推荐指数
2
解决办法
1万
查看次数

对象引用未设置为对象的实例

我在VB.net中遇到错误"对象引用没有设置为对象的实例".你能告诉我这个错误的原因是什么吗?谢谢..

vb.net

2
推荐指数
3
解决办法
6万
查看次数

标签 统计

vb.net ×4

sql-server ×2

encryption ×1

hash ×1

passwords ×1

sql ×1

text-files ×1