Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. spwhite

    need help with data in cyrillic font

    Set up or amend your description column to have a data type of 'nchar' or 'nvarchar' and a collation sequence of 'SQL_Latin1_General_CP1_CI_AS' or 'SQL_Latin1_General_CP1_CS_AS' depending on if you want case insensitivity or not. (ignoring single quotes)
  2. spwhite

    How to make SQL Connection String revert to mixed-mode security?

    Try: "Provider=SQLOLEDB.1;Integrated Security=SSPI;Initial Catalog=TheDatabase;Data Source=TheServer"
  3. spwhite

    Read localhost cookie

    Yes it will open in notepad, etc. I have a separate method to get to the data by going to the cookie folder (via registry) and manually reading the cookie file but I am trying to get InternetGetCookie to work in this app for this case. This is the code that I am using: Private Declare...
  4. spwhite

    Read localhost cookie

    I am trying to read a cookie into VB6 that was saved by a page running under localhost, by using InternetGetCookie (wininet.dll). I can successfully read any other cookies apart from ones saved under localhost. The cookie file appears as white_s@~~local~~[2].txt and I just don't seem to be...
  5. spwhite

    Load codepage 1251 data into a codepage 1250 column

    I have Russian source data (Unicode) which I need to get into a varchar column with SQL_Latin1_General_CP1250_CI_AS collation. I know the characters will apper screwed up but this doesn't matter at this stage. Further down the line, this data will be exported into an ANSI text file (along...

Part and Inventory Search

Back
Top