DotNetNewsgroup.com  
web access to complete list of Microsoft.NET newsgroups
   home   |   control panel login   |   archive  |  
 
  carried group
academic
adonet
aspnet
aspnet.announcements
aspnet.buildingcontrols
aspnet.caching
aspnet.datagridcontrol
aspnet.mobile
aspnet.security
aspnet.webcontrols
aspnet.webservices
assignment_manager
datatools
dotnet.distributed_apps
dotnet.general
dotnet.myservices
dotnet.nternationalization
dotnet.scripting
dotnet.security
dotnet.vjsharp
dotnet.vsa
dotnet.xml
dotnetfaqs
framework
framework.clr
framework.compactframework
framework.component_services
framework.controls
framework.databinding
framework.drawing
framework.enhancements
framework.interop
framework.odbcnet
framework.performance
framework.remoting
framework.sdk
framework.setup
framework.webservices
framework.windowsforms
framework.wmi
frwk.windowsforms.designtime
lang.csharp
lang.jscript
lang.vb
lang.vb.controls
lang.vb.data
lang.vb.upgrade
lang.vc
lang.vc.libraries
  
 
start date: Thu, 09 Aug 2007 06:59:18 -0700,    posted on: microsoft.public.dotnet.framework.aspnet        back       

Thread Index
  1    slinky
          2    Peter Bromberg [C# MVP]
          3    David Wier
          4    slinky
          5    Alexey Smirnov
          6    Alexey Smirnov
          7    slinky
          8    Alexey Smirnov
          9    slinky
                 10    Silicon Strawberry


.aspx.vb code syntax   
I'm making a OLE DB connection in code and was wondering if anyone
could identify what the syntax errors would be in this just as it is
pasted (I tried putting   & _  at the end of the first line and that
only brought up other errors):

        New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=" & Server.MapPath(~/App_Data/Lowes.mdb) & ";" & _
          "Initial Catalog=Assets;Integrated Security=SSPI")

Thanks!!
Date:Thu, 09 Aug 2007 06:59:18 -0700   Author:  

RE: .aspx.vb code syntax   
Have you looked at connectionstrings.com? Its a good url to bookmark.
Peter
-- 
Recursion: see Recursion
site:  http://www.eggheadcafe.com
unBlog:  http://petesbloggerama.blogspot.com
BlogMetaFinder:    http://www.blogmetafinder.com



"slinky" wrote:


> I'm making a OLE DB connection in code and was wondering if anyone
> could identify what the syntax errors would be in this just as it is
> pasted (I tried putting   & _  at the end of the first line and that
> only brought up other errors):
> 
>         New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data
> Source=" & Server.MapPath(~/App_Data/Lowes.mdb) & ";" & _
>           "Initial Catalog=Assets;Integrated Security=SSPI")
> 
> Thanks!!
> 
> 
Date:Thu, 9 Aug 2007 08:20:00 -0700   Author:  

Re: .aspx.vb code syntax   
try removing all continuation characters and see if it all works

David Wier
http://aspnet101.com
http://iWritePro.com - One click PDF, convert .doc/.rtf/.txt to HTML with no 
bloated markup



"slinky"  wrote in message 
news:1186667958.051624.112110@l70g2000hse.googlegroups.com...

> I'm making a OLE DB connection in code and was wondering if anyone
> could identify what the syntax errors would be in this just as it is
> pasted (I tried putting   & _  at the end of the first line and that
> only brought up other errors):
>
>        New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data
> Source=" & Server.MapPath(~/App_Data/Lowes.mdb) & ";" & _
>          "Initial Catalog=Assets;Integrated Security=SSPI")
>
> Thanks!!
> 
Date:Thu, 9 Aug 2007 11:25:41 -0500   Author:  

Re: .aspx.vb code syntax   
I just did that with this line:

New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
Server.MapPath(~/App_Data/Lowes.mdb) " &";""Initial
Catalog=Assets;Integrated Security=SSPI")

I used no continuity characters and the line showed no errors, except
one - it noted the ~ symbol as being not valid, but then errors showed
up in other unexpected places like: 'cnn' is not declared... when my
code (in its entirety below) shows that it IS declared.
_________________________________________________________________________________

Imports System.Data
Imports System.Data.OleDb
Public Class Default5
    Inherits System.Web.UI.Page
    Private Sub Page_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles MyBase.Load
        Dim cnn As OleDbConnection = _
           New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=" & Server.MapPath(~/App_Data/Lowes.mdb) " &";""Initial
Catalog=Assets;Integrated Security=SSPI")
        Dim ds As DataSet = New DataSet()
        Dim da As OleDbDataAdapter = New OleDbDataAdapter()
        If Not IsPostBack Then
            Dim cmdSelect As OleDbCommand = _
            cnn.CreateCommand()
            cmdSelect.CommandType = CommandType.Text
            cmdSelect.CommandText = _
"SELECT ([Asset Number], Description, [Serial Number], Mfg, AssetType,
RDCnumber) FROM Assets"
            Dim cmdInsert As OleDbCommand = _
            cnn.CreateCommand()
            cmdInsert.CommandType = CommandType.Text
            cmdInsert.CommandText = _
"INSERT INTO Assets " & _
"([Asset Number], Description, [Serial Number], Mfg, AssetType,
RDCnumber) " & _
"VALUES(@AssetNumber, @Description, @Serial_Number, @Mfg, @AssetType,
@RDCnumber"
            cmdInsert.Parameters.Add("@txtAsset_Number",
OleDbType.Double, 12, "[Asset Number]")
            cmdInsert.Parameters.Add("@txtDescription",
OleDbType.WChar, 40, "Description")
            cmdInsert.Parameters.Add("@txtSerial_Number",
OleDbType.WChar, 30, "[Serial Number]")
            cmdInsert.Parameters.Add("@txtMfg", OleDbType.WChar, 30,
"Mfg")
            cmdInsert.Parameters.Add("@txtAssetType", OleDbType.WChar,
30, "AssetType")
            cmdInsert.Parameters.Add("@txtRDCNumber", OleDbType.WChar,
30, "RDCnumber")
            Dim SourceVersion As DataRowVersion
            SourceVersion = DataRowVersion.Original
            da.SelectCommand = cmdSelect
            da.InsertCommand = cmdInsert
            da.Fill(ds, "Assets")
        End If
    End Sub
    Private Sub btnAdd_Click( _
    ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles btnAdd.Click
        Dim cnn As OleDbConnection = _
           New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=" & Server.MapPath(~/App_Data/Lowes.mdb) " &";""Initial
Catalog=Assets;Integrated Security=SSPI")
        Dim ds As DataSet = New DataSet()
        Dim da As OleDbDataAdapter = New OleDbDataAdapter()
        Dim dr As DataRow = ds.Tables("Assets").NewRow()
        dr(0) = txtAsset_Number.Text
        dr(1) = txtDescription.Text
        dr(2) = txtSerial_Number.Text
        dr(3) = txtMfg.Text
        dr(4) = txtAssetType.Text
        dr(5) = txtRDCnumber.Text
        ds.Tables("Assets").Rows.Add(dr)
        da.Update(ds, "Assets")
    End Sub
End Class
______________________________________________________________________________________________________




On Aug 9, 12:25 pm, "David Wier" 
wrote:

> try removing all continuation characters and see if it all works
>
> David Wierhttp://aspnet101.comhttp://iWritePro.com- One click PDF, convert .doc/.rtf/.txt to HTML with no
> bloated markup
>
> "slinky"  wrote in message
>
> news:1186667958.051624.112110@l70g2000hse.googlegroups.com...
>
>
>
> > I'm making a OLE DB connection in code and was wondering if anyone
> > could identify what the syntax errors would be in this just as it is
> > pasted (I tried putting   & _  at the end of the first line and that
> > only brought up other errors):
>
> >        New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data
> > Source=" & Server.MapPath(~/App_Data/Lowes.mdb) & ";" & _
> >          "Initial Catalog=Assets;Integrated Security=SSPI")
>
> > Thanks!!- Hide quoted text -
>
> - Show quoted text -
Date:Thu, 09 Aug 2007 10:33:34 -0700   Author:  

Re: .aspx.vb code syntax   
On Aug 9, 7:33 pm, slinky  wrote:

> I just did that with this line:
>
> New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
> Server.MapPath(~/App_Data/Lowes.mdb) " &";""Initial
> Catalog=Assets;Integrated Security=SSPI")


I guess

Server.MapPath("~/App_Data/Lowes.mdb")
Date:Thu, 09 Aug 2007 10:39:19 -0700   Author:  

Re: .aspx.vb code syntax   
On Aug 9, 7:39 pm, Alexey Smirnov  wrote:

> On Aug 9, 7:33 pm, slinky  wrote:
>
> > I just did that with this line:
>
> > New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
> > Server.MapPath(~/App_Data/Lowes.mdb) " &";""Initial
> > Catalog=Assets;Integrated Security=SSPI")
>
> I guess
>
> Server.MapPath("~/App_Data/Lowes.mdb")


and finally

New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
Server.MapPath(~/App_Data/Lowes.mdb) " &";Initial
Catalog=Assets;Integrated Security=SSPI")

you should understand that the goal of that concatenation is to have a
properly formatted string, for example:

Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\InetPub\wwwroot
\App_Data\Lowes.mdb;Initial Catalog=Assets;Integrated Security=SSPI
Date:Thu, 09 Aug 2007 10:43:31 -0700   Author:  

Re: .aspx.vb code syntax   
So would this work? I added a couple of continuity characters. Looks
OK but it still doesn't allow the ~ symbol AND it still says the cnn's
are not declared.

New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
_
Server.MapPath(~/App_Data/Lowes.mdb) " &";Initial & _
Catalog=Assets;Integrated Security=SSPI")
Date:Thu, 09 Aug 2007 11:13:43 -0700   Author:  

Re: .aspx.vb code syntax   
On Aug 9, 8:13 pm, slinky  wrote:

> So would this work? I added a couple of continuity characters. Looks
> OK but it still doesn't allow the ~ symbol AND it still says the cnn's
> are not declared.
>
> New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
> _
> Server.MapPath(~/App_Data/Lowes.mdb) " &";Initial & _
> Catalog=Assets;Integrated Security=SSPI")


oh, sorry a silly copy typo:

Server.MapPath("~/App_Data/Lowes.mdb")
Date:Thu, 09 Aug 2007 11:21:27 -0700   Author:  

Re: .aspx.vb code syntax   
OK I put this in:

New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
_
Server.MapPath("~/App_Data/Lowes.mdb") " &";Initial & _
Catalog=Assets;Integrated Security=SSPI")

But then the          " &"    part of the second line errors
with:          "Comma, ")", or valid expression expected"

Plus any clues as to why the 'cnn' isn't recognized?

On Aug 9, 2:21 pm, Alexey Smirnov  wrote:

> On Aug 9, 8:13 pm, slinky  wrote:
>
> > So would this work? I added a couple of continuity characters. Looks
> > OK but it still doesn't allow the ~ symbol AND it still says the cnn's
> > are not declared.
>
> > New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
> > _
> > Server.MapPath(~/App_Data/Lowes.mdb) " &";Initial & _
> > Catalog=Assets;Integrated Security=SSPI")
>
> oh, sorry a silly copy typo:
>
> Server.MapPath("~/App_Data/Lowes.mdb")
Date:Thu, 09 Aug 2007 11:44:17 -0700   Author:  

Re: .aspx.vb code syntax   
Instead of


> New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
> _
> Server.MapPath("~/App_Data/Lowes.mdb") " &";Initial & _
> Catalog=Assets;Integrated Security=SSPI")

Try this:

> New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" &
> _
> Server.MapPath("~/App_Data/Lowes.mdb") & ";Initial " & _
> "Catalog=Assets;Integrated Security=SSPI")


Akin
-- 
akyak at aksoto dot idps dot co dot uk
Date:Fri, 10 Aug 2007 20:30:24 +0100   Author:  

Google
 
Web dotnetnewsgroup.com


COPYRIGHT ?2005, EUROFRONT WORLDWIDE LTD., ALL RIGHT RESERVE  |   Contact us