Search results for query: *

  • Users: rudba
  • Order by date
  1. R

    select for xml

    How do i use select for xml? strSQL = "SELECT id, fname,lname FROM tbl1 FOR XML path('')" Comm = New SqlCommand(strSQL, Con) Comm.CommandType = CommandType.Text Comm.ExecuteNonQuery()
  2. R

    How to create msg file?

    Hi guys, How do i create msg file (Outlook file). The contain comes from database (from, to, subject, body etc)
  3. R

    How to Retrieving doc/pdf/xls files in SQL Server?

    Hello guy, I have data on sql server 2005. Data are store on biary format. How to retriev thoes data ino oc, pdf, xls forat?
  4. R

    How toRetrive doc,pdf,xls files from SQL Server

    Hello gus, I have a database (sql server 2005) . Data are store on table in binary data (doc, pdf, xls files) How do i restore thoes files from SQL Server?
  5. R

    How to read null value from XML Node?

    Hello, How to get the null value from the xml node. Pls. modify the following code to get null value. Imports System.Xml Module Module1 Sub Main() Dim reader As XmlTextReader = New XmlTextReader("bb.xml") Do While (reader.Read()) Select Case reader.NodeType...
Back
Top