Click here to Skip to main content
15,881,172 members
Home / Discussions / Database
   

Database

 
GeneralRe: ADO.NET Update / delete without primary keys Pin
Jasonc22124-Oct-05 12:37
Jasonc22124-Oct-05 12:37 
QuestionSQL connection in servicedcomponents Pin
eliprand14-Oct-05 5:43
eliprand14-Oct-05 5:43 
AnswerRe: SQL connection in servicedcomponents Pin
eliprand14-Oct-05 6:08
eliprand14-Oct-05 6:08 
QuestionHow does Oracle support unicode text? Pin
Xiangyang Liu 刘向阳14-Oct-05 5:35
Xiangyang Liu 刘向阳14-Oct-05 5:35 
AnswerRe: How does Oracle support unicode text? Pin
DiWa14-Oct-05 19:30
DiWa14-Oct-05 19:30 
GeneralRe: How does Oracle support unicode text? Pin
Xiangyang Liu 刘向阳14-Oct-05 19:50
Xiangyang Liu 刘向阳14-Oct-05 19:50 
QuestionConnection String Pin
kenexcelon13-Oct-05 14:27
kenexcelon13-Oct-05 14:27 
AnswerRe: Connection String Pin
Mike Dimmick14-Oct-05 4:42
Mike Dimmick14-Oct-05 4:42 
I'm presuming you're talking about what's sent over the wire.

If you're talking about SQL Server 2000, the password isn't sent in plain text. However it looks like the encryption is pretty trivial - I can see that every character always encodes to the same byte every time, and that the 0 bytes (the password is sent as UTF-16, so for a password that uses only ISO-8859-1 [Latin-1] characters every other byte is a 0) are always 0xa5. So it's really not secure.

Instead of sending a username and password, you should consider using a trusted connection (set Integrated Security=SSPI) which will use a better protocol for authentication - NTLM or I think even Kerberos. However, you can't specify the username to be used - the security identity of the current thread will be used.

[EDIT] You can also enable SSL. See 'Net-Library Encryption' in Books Online. [/EDIT]

Stability. What an interesting concept. -- Chris Maunder
GeneralRe: Connection String Pin
Anonymous14-Oct-05 15:32
Anonymous14-Oct-05 15:32 
QuestionOPENXML and ntext problem Pin
Luke Murray13-Oct-05 13:44
Luke Murray13-Oct-05 13:44 
QuestionListBox Display Member Pin
kenexcelon13-Oct-05 7:49
kenexcelon13-Oct-05 7:49 
AnswerRe: ListBox Display Member Pin
-Dr_X-13-Oct-05 8:44
-Dr_X-13-Oct-05 8:44 
QuestionError: JZooL & JZ006 What do I do? Pin
Crystal A13-Oct-05 3:27
sussCrystal A13-Oct-05 3:27 
AnswerRe: Error: JZooL & JZ006 What do I do? Pin
Mike Dimmick14-Oct-05 5:01
Mike Dimmick14-Oct-05 5:01 
QuestionSyntax error converting the nvarchar value 'INSERT INTO.... Pin
Mahantesh_Hongal12-Oct-05 23:25
Mahantesh_Hongal12-Oct-05 23:25 
AnswerRe: Syntax error converting the nvarchar value 'INSERT INTO.... Pin
under281113-Oct-05 2:08
under281113-Oct-05 2:08 
GeneralRe: Syntax error converting the nvarchar value 'INSERT INTO.... Pin
Mahantesh_Hongal13-Oct-05 2:11
Mahantesh_Hongal13-Oct-05 2:11 
GeneralRe: Syntax error converting the nvarchar value 'INSERT INTO.... Pin
Edbert P13-Oct-05 17:39
Edbert P13-Oct-05 17:39 
GeneralRe: Syntax error converting the nvarchar value 'INSERT INTO.... Pin
Anonymous13-Oct-05 18:35
Anonymous13-Oct-05 18:35 
GeneralRe: Syntax error converting the nvarchar value 'INSERT INTO.... Pin
Edbert P13-Oct-05 19:08
Edbert P13-Oct-05 19:08 
QuestionInsert to SQL Error Pin
PAEC12-Oct-05 7:00
PAEC12-Oct-05 7:00 
AnswerRe: Insert to SQL Error Pin
Edbert P13-Oct-05 17:43
Edbert P13-Oct-05 17:43 
GeneralRe: Insert to SQL Error Pin
PAEC14-Oct-05 6:46
PAEC14-Oct-05 6:46 
GeneralRe: Insert to SQL Error Pin
Edbert P16-Oct-05 12:39
Edbert P16-Oct-05 12:39 
GeneralRe: Insert to SQL Error Pin
PAEC17-Oct-05 2:43
PAEC17-Oct-05 2:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.