Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default newbie sql

    Hi,

    I've got a newbie question:

    i've got a device running with a WINCE.NET platform including the
    webserver functionality.
    Is it possible to access/create a localy SQL DataBase from an ASP page
    running on that webserver?

    and if it is, how? (code example)

    i hope you can help me

    thanks erwin
    ..
    Erwin Guest

  2. Similar Questions and Discussions

    1. A newbie with a newbie question
      Good afternoon everyone, My Name is Dusty I am new to this forum and pretty new to Acrobat. I have Acrobat 9 running on an IMAC running 10.5.2 I...
    2. Help for a Newbie
      Hi All, I have 3 files I am using, Index.html, Test.asp, MyNewpage.html. I am try to load MyNewPage.html into Test.asp. Index.html has a link as...
    3. newbie ill q
      Hey everyone, I have to work on some logos for my place of business... I've scanned them in , edited them in Photoshop, and then made a workpath...
    4. Please help a newbie!
      Hi, I am just starting out using Flash MX. I just want some general knowledge on Flash......I am planning on making a website, but I have no idea...
    5. Newbie help with LWP
      When you login the server must pass a token back to the browser so that the browser can identify itself to the server in the next request. This is...
  3. #2

    Default Re: newbie sql

    Do you have SQL Server CE? Then you can use ADOCE to access the SQL Server
    database from your ASP page running on the CE device.

    Cheers
    Ken

    "Erwin" <erwin.zwart@pts.nl> wrote in message
    news:a06a5c16.0307282231.6e9885bf@posting.google.c om...
    : Hi,
    :
    : I've got a newbie question:
    :
    : i've got a device running with a WINCE.NET platform including the
    : webserver functionality.
    : Is it possible to access/create a localy SQL DataBase from an ASP page
    : running on that webserver?
    :
    : and if it is, how? (code example)
    :
    : i hope you can help me
    :
    : thanks erwin
    : .


    Ken Schaefer Guest

  4. #3

    Default Re: newbie sql

    I can't help you with the CE Framework stuff - I don't know enough about it.

    With the ADOCE stuff, you need to install that manually (there are
    instruction as part of the SQL Server CE 1.1 setup)

    Cheers
    Ken

    "Erwin Zwart" <erwin.zwart@pts.nl> wrote in message
    news:eVBIzkbVDHA.1512@TK2MSFTNGP11.phx.gbl...
    : Thanks for your reply,
    :
    : To be honest i don't realy now,
    :
    : I was able to create a SQL Database programmaticly in C# with:
    :
    : -----
    : SqlCeEngine engine = new SqlCeEngine("Data Source = \\Hard
    : Disk\\test.sdf");
    : engine.CreateDatabase();
    : SqlCeConnection ssceconn = new ...
    : etc
    : -----
    :
    : I also tried the following in my ASP Page:
    : Set myDB CreateObject("ADOCE.Connection.3.1") but that failed with:
    : Can't create object. So i gues it is not there?
    :
    : When i look into te registry i can see object referring to SSCE
    : (SqlServerCE?) but nothing about ADO?
    :
    : i hope you can help me
    :
    : thanks Erwin
    :
    :
    : *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    : Don't just participate in USENET...get rewarded for it!


    Ken Schaefer Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139