473,830 Members | 2,045 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Trouble authenticating to Remote SQL Server

Ok everyone, i have been pulling my hair out on this one. I have been
working on it for 3 days with no sucess. This problem is occuring at home
where i am running a workgroup. I have Windows 2003 Ent Server on one
machine and windows xp sp2 on another. The db server is located on the
Windows 2003 machine. I am working locally with asp.net 1.1 on the xp
workstation and the web server is also locally on the xp workstation. Every
time i try to connect with the asp.net application to the database i get the
following error:

Server Error in '/WebApplication1 ' Application.
----------------------------------------------------------------------------
----

Login failed for user '(null)'. Reason: Not associated with a trusted SQL
Server connection.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.Sql Client.SqlExcep tion: Login failed for user
'(null)'. Reason: Not associated with a trusted SQL Server connection.

Source Error:
Line 44:
Line 45: ' fill the dataset
Line 46: dataAdapter.Fil l(ds, "Customers" )
Line 47: Dim bldr As New SqlCommandBuild er(dataAdapter)
Line 48:
Source File: c:\inetpub\wwwr oot\WebApplicat ion1\WebForm1.a spx.vb Line: 46

Stack Trace:
[SqlException: Login failed for user '(null)'. Reason: Not associated with a
trusted SQL Server connection.]
System.Data.Sql Client.Connecti onPool.GetConne ction(Boolean&
isInTransaction )

System.Data.Sql Client.SqlConne ctionPoolManage r.GetPooledConn ection(SqlConne c
tionString options, Boolean& isInTransaction )
System.Data.Sql Client.SqlConne ction.Open()
System.Data.Com mon.DbDataAdapt er.QuietOpen(ID bConnection connection,
ConnectionState & originalState)
System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32 startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior)
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, String srcTable)
WebApplication1 .WebForm1.Page_ Load(Object sender, EventArgs e) in
c:\inetpub\wwwr oot\WebApplicat ion1\WebForm1.a spx.vb:46
System.Web.UI.C ontrol.OnLoad(E ventArgs e)
System.Web.UI.C ontrol.LoadRecu rsive()
System.Web.UI.P age.ProcessRequ estMain()
I have tried to following to fix the problem.

1) Tried to add the asp.net user to sql server

2) Removed tcp/ip from the connect types to sql server

3) added a new user which i called "aspnetuser " to both computers then when
into anonymous logins on IIS and added this user as the anonymous login user
and unchecked the let IIS control the password and typed in the correct
password.

4) change the asp.net user that the install of vs.net added and added them
to the admin group on both machines. I have no problem login into sql server
(windows authentication) when i use my local account i created on the xp
workstation for me (im in the admin group).

The only thing i have not used is impersonation and id rather not unless i
have to. Course since i haven't tried it, i might have trouble with it too.

Scratch what i just said above. I tried impersonaltion and it worked but id
rather not use this if at all possible. I want to use the security that
vs.net set up for the "asp.net" user. Is this possible without using
impersonation?

Thanks,
Brent
Nov 18 '05 #1
4 1361
What does your connection string look like? If you are on a workgroup and
NOT in a domain your sql server is not going to know the requesting user.

Have you tried not using a trusted connection and use something like this in
your connection string:

Server=(local); Initial Catalog=pubs;Us er Id=sa;Password=

-Rob

"Brent Waldrop" <br*****@spam.h otmail.com> wrote in message
news:uU******** ******@TK2MSFTN GP15.phx.gbl...
Ok everyone, i have been pulling my hair out on this one. I have been
working on it for 3 days with no sucess. This problem is occuring at home
where i am running a workgroup. I have Windows 2003 Ent Server on one
machine and windows xp sp2 on another. The db server is located on the
Windows 2003 machine. I am working locally with asp.net 1.1 on the xp
workstation and the web server is also locally on the xp workstation.
Every
time i try to connect with the asp.net application to the database i get
the
following error:

Server Error in '/WebApplication1 ' Application.
----------------------------------------------------------------------------
----

Login failed for user '(null)'. Reason: Not associated with a trusted SQL
Server connection.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.Sql Client.SqlExcep tion: Login failed for
user
'(null)'. Reason: Not associated with a trusted SQL Server connection.

Source Error:
Line 44:
Line 45: ' fill the dataset
Line 46: dataAdapter.Fil l(ds, "Customers" )
Line 47: Dim bldr As New SqlCommandBuild er(dataAdapter)
Line 48:
Source File: c:\inetpub\wwwr oot\WebApplicat ion1\WebForm1.a spx.vb Line:
46

Stack Trace:
[SqlException: Login failed for user '(null)'. Reason: Not associated with
a
trusted SQL Server connection.]
System.Data.Sql Client.Connecti onPool.GetConne ction(Boolean&
isInTransaction )

System.Data.Sql Client.SqlConne ctionPoolManage r.GetPooledConn ection(SqlConne c
tionString options, Boolean& isInTransaction )
System.Data.Sql Client.SqlConne ction.Open()
System.Data.Com mon.DbDataAdapt er.QuietOpen(ID bConnection connection,
ConnectionState & originalState)
System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior)
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, String srcTable)
WebApplication1 .WebForm1.Page_ Load(Object sender, EventArgs e) in
c:\inetpub\wwwr oot\WebApplicat ion1\WebForm1.a spx.vb:46
System.Web.UI.C ontrol.OnLoad(E ventArgs e)
System.Web.UI.C ontrol.LoadRecu rsive()
System.Web.UI.P age.ProcessRequ estMain()
I have tried to following to fix the problem.

1) Tried to add the asp.net user to sql server

2) Removed tcp/ip from the connect types to sql server

3) added a new user which i called "aspnetuser " to both computers then
when
into anonymous logins on IIS and added this user as the anonymous login
user
and unchecked the let IIS control the password and typed in the correct
password.

4) change the asp.net user that the install of vs.net added and added them
to the admin group on both machines. I have no problem login into sql
server
(windows authentication) when i use my local account i created on the xp
workstation for me (im in the admin group).

The only thing i have not used is impersonation and id rather not unless i
have to. Course since i haven't tried it, i might have trouble with it
too.

Scratch what i just said above. I tried impersonaltion and it worked but
id
rather not use this if at all possible. I want to use the security that
vs.net set up for the "asp.net" user. Is this possible without using
impersonation?

Thanks,
Brent

Nov 18 '05 #2
Actually Rob, SQL Server does. I created two identical user accounts on both
the xp box and the windows 2003 box and used the same password. I can log
into query analyzer just fine using windows authentication. My sql server is
set up to use only windows authentication so username/password does not work
and i prefer to keep it this way. Also the server explorer works just fine
under the VS.Net IDE. I appreciate your reply though. Also when i create a
regular vb.net app; windows authentication works just fine.

Brent
"Rob Bazinet" <rb********@hot mail.com> wrote in message
news:OX******** *******@TK2MSFT NGP10.phx.gbl.. .
What does your connection string look like? If you are on a workgroup and
NOT in a domain your sql server is not going to know the requesting user.

Have you tried not using a trusted connection and use something like this in your connection string:

Server=(local); Initial Catalog=pubs;Us er Id=sa;Password=

-Rob

"Brent Waldrop" <br*****@spam.h otmail.com> wrote in message
news:uU******** ******@TK2MSFTN GP15.phx.gbl...
Ok everyone, i have been pulling my hair out on this one. I have been
working on it for 3 days with no sucess. This problem is occuring at home where i am running a workgroup. I have Windows 2003 Ent Server on one
machine and windows xp sp2 on another. The db server is located on the
Windows 2003 machine. I am working locally with asp.net 1.1 on the xp
workstation and the web server is also locally on the xp workstation.
Every
time i try to connect with the asp.net application to the database i get
the
following error:

Server Error in '/WebApplication1 ' Application.


--------------------------------------------------------------------------

--
----

Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.Sql Client.SqlExcep tion: Login failed for
user
'(null)'. Reason: Not associated with a trusted SQL Server connection.

Source Error:
Line 44:
Line 45: ' fill the dataset
Line 46: dataAdapter.Fil l(ds, "Customers" )
Line 47: Dim bldr As New SqlCommandBuild er(dataAdapter)
Line 48:
Source File: c:\inetpub\wwwr oot\WebApplicat ion1\WebForm1.a spx.vb Line: 46

Stack Trace:
[SqlException: Login failed for user '(null)'. Reason: Not associated with a
trusted SQL Server connection.]
System.Data.Sql Client.Connecti onPool.GetConne ction(Boolean&
isInTransaction )

System.Data.Sql Client.SqlConne ctionPoolManage r.GetPooledConn ection(SqlConne c tionString options, Boolean& isInTransaction )
System.Data.Sql Client.SqlConne ction.Open()
System.Data.Com mon.DbDataAdapt er.QuietOpen(ID bConnection connection,
ConnectionState & originalState)
System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior)
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, String srcTable) WebApplication1 .WebForm1.Page_ Load(Object sender, EventArgs e) in
c:\inetpub\wwwr oot\WebApplicat ion1\WebForm1.a spx.vb:46
System.Web.UI.C ontrol.OnLoad(E ventArgs e)
System.Web.UI.C ontrol.LoadRecu rsive()
System.Web.UI.P age.ProcessRequ estMain()
I have tried to following to fix the problem.

1) Tried to add the asp.net user to sql server

2) Removed tcp/ip from the connect types to sql server

3) added a new user which i called "aspnetuser " to both computers then
when
into anonymous logins on IIS and added this user as the anonymous login
user
and unchecked the let IIS control the password and typed in the correct
password.

4) change the asp.net user that the install of vs.net added and added them to the admin group on both machines. I have no problem login into sql
server
(windows authentication) when i use my local account i created on the xp
workstation for me (im in the admin group).

The only thing i have not used is impersonation and id rather not unless i have to. Course since i haven't tried it, i might have trouble with it
too.

Scratch what i just said above. I tried impersonaltion and it worked but
id
rather not use this if at all possible. I want to use the security that
vs.net set up for the "asp.net" user. Is this possible without using
impersonation?

Thanks,
Brent


Nov 18 '05 #3
EC
In this case, you need to add the IIS_WPG account to your database users.

"Brent Waldrop" <br*****@spam.h otmail.com> wrote in message
news:eD******** ******@TK2MSFTN GP12.phx.gbl...
Actually Rob, SQL Server does. I created two identical user accounts on both
the xp box and the windows 2003 box and used the same password. I can log
into query analyzer just fine using windows authentication. My sql server is
set up to use only windows authentication so username/password does not work
and i prefer to keep it this way. Also the server explorer works just fine
under the VS.Net IDE. I appreciate your reply though. Also when i create a
regular vb.net app; windows authentication works just fine.

Brent
"Rob Bazinet" <rb********@hot mail.com> wrote in message
news:OX******** *******@TK2MSFT NGP10.phx.gbl.. .
What does your connection string look like? If you are on a workgroup and
NOT in a domain your sql server is not going to know the requesting user.

Have you tried not using a trusted connection and use something like this

in
your connection string:

Server=(local); Initial Catalog=pubs;Us er Id=sa;Password=

-Rob

"Brent Waldrop" <br*****@spam.h otmail.com> wrote in message
news:uU******** ******@TK2MSFTN GP15.phx.gbl...
Ok everyone, i have been pulling my hair out on this one. I have been
working on it for 3 days with no sucess. This problem is occuring at home where i am running a workgroup. I have Windows 2003 Ent Server on one
machine and windows xp sp2 on another. The db server is located on the
Windows 2003 machine. I am working locally with asp.net 1.1 on the xp
workstation and the web server is also locally on the xp workstation.
Every
time i try to connect with the asp.net application to the database i get
the
following error:

Server Error in '/WebApplication1 ' Application.


--------------------------------------------------------------------------

--
----

Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.Data.Sql Client.SqlExcep tion: Login failed for
user
'(null)'. Reason: Not associated with a trusted SQL Server connection.

Source Error:
Line 44:
Line 45: ' fill the dataset
Line 46: dataAdapter.Fil l(ds, "Customers" )
Line 47: Dim bldr As New SqlCommandBuild er(dataAdapter)
Line 48:
Source File: c:\inetpub\wwwr oot\WebApplicat ion1\WebForm1.a spx.vb Line: 46

Stack Trace:
[SqlException: Login failed for user '(null)'. Reason: Not associated with a
trusted SQL Server connection.]
System.Data.Sql Client.Connecti onPool.GetConne ction(Boolean&
isInTransaction )

System.Data.Sql Client.SqlConne ctionPoolManage r.GetPooledConn ection(SqlConne c tionString options, Boolean& isInTransaction )
System.Data.Sql Client.SqlConne ction.Open()
System.Data.Com mon.DbDataAdapt er.QuietOpen(ID bConnection connection,
ConnectionState & originalState)
System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord,
Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior
behavior)
System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, String srcTable) WebApplication1 .WebForm1.Page_ Load(Object sender, EventArgs e) in
c:\inetpub\wwwr oot\WebApplicat ion1\WebForm1.a spx.vb:46
System.Web.UI.C ontrol.OnLoad(E ventArgs e)
System.Web.UI.C ontrol.LoadRecu rsive()
System.Web.UI.P age.ProcessRequ estMain()
I have tried to following to fix the problem.

1) Tried to add the asp.net user to sql server

2) Removed tcp/ip from the connect types to sql server

3) added a new user which i called "aspnetuser " to both computers then
when
into anonymous logins on IIS and added this user as the anonymous login
user
and unchecked the let IIS control the password and typed in the correct
password.

4) change the asp.net user that the install of vs.net added and added them to the admin group on both machines. I have no problem login into sql
server
(windows authentication) when i use my local account i created on the xp
workstation for me (im in the admin group).

The only thing i have not used is impersonation and id rather not unless i have to. Course since i haven't tried it, i might have trouble with it
too.

Scratch what i just said above. I tried impersonaltion and it worked but
id
rather not use this if at all possible. I want to use the security that
vs.net set up for the "asp.net" user. Is this possible without using
impersonation?

Thanks,
Brent



Nov 18 '05 #4
Just tried that...that doesn't work either.

"EC" <ec@notmyrealad dress.com> wrote in message
news:Oq******** ******@TK2MSFTN GP10.phx.gbl...
In this case, you need to add the IIS_WPG account to your database users.

"Brent Waldrop" <br*****@spam.h otmail.com> wrote in message
news:eD******** ******@TK2MSFTN GP12.phx.gbl...
Actually Rob, SQL Server does. I created two identical user accounts on
both
the xp box and the windows 2003 box and used the same password. I can log
into query analyzer just fine using windows authentication. My sql server
is
set up to use only windows authentication so username/password does not
work
and i prefer to keep it this way. Also the server explorer works just
fine
under the VS.Net IDE. I appreciate your reply though. Also when i create
a
regular vb.net app; windows authentication works just fine.

Brent
"Rob Bazinet" <rb********@hot mail.com> wrote in message
news:OX******** *******@TK2MSFT NGP10.phx.gbl.. .
> What does your connection string look like? If you are on a workgroup
> and
> NOT in a domain your sql server is not going to know the requesting
> user.
>
> Have you tried not using a trusted connection and use something like
> this

in
> your connection string:
>
> Server=(local); Initial Catalog=pubs;Us er Id=sa;Password=
>
> -Rob
>
> "Brent Waldrop" <br*****@spam.h otmail.com> wrote in message
> news:uU******** ******@TK2MSFTN GP15.phx.gbl...
> > Ok everyone, i have been pulling my hair out on this one. I have been
> > working on it for 3 days with no sucess. This problem is occuring at

home
> > where i am running a workgroup. I have Windows 2003 Ent Server on
> > one
> > machine and windows xp sp2 on another. The db server is located on
> > the
> > Windows 2003 machine. I am working locally with asp.net 1.1 on the xp
> > workstation and the web server is also locally on the xp workstation.
> > Every
> > time i try to connect with the asp.net application to the database i
> > get
> > the
> > following error:
> >
> > Server Error in '/WebApplication1 ' Application.
>
> --------------------------------------------------------------------------

--
> > ----
> >
> > Login failed for user '(null)'. Reason: Not associated with a trusted

SQL
> > Server connection.
> > Description: An unhandled exception occurred during the execution of
> > the
> > current web request. Please review the stack trace for more
> > information
> > about the error and where it originated in the code.
> >
> > Exception Details: System.Data.Sql Client.SqlExcep tion: Login failed
> > for
> > user
> > '(null)'. Reason: Not associated with a trusted SQL Server
> > connection.
> >
> > Source Error:
> >
> >
> > Line 44:
> > Line 45: ' fill the dataset
> > Line 46: dataAdapter.Fil l(ds, "Customers" )
> > Line 47: Dim bldr As New SqlCommandBuild er(dataAdapter)
> > Line 48:
> >
> >
> > Source File: c:\inetpub\wwwr oot\WebApplicat ion1\WebForm1.a spx.vb

Line:
> > 46
> >
> > Stack Trace:
> >
> >
> > [SqlException: Login failed for user '(null)'. Reason: Not associated

with
> > a
> > trusted SQL Server connection.]
> > System.Data.Sql Client.Connecti onPool.GetConne ction(Boolean&
> > isInTransaction )
> >
> >

System.Data.Sql Client.SqlConne ctionPoolManage r.GetPooledConn ection(SqlConne c
> > tionString options, Boolean& isInTransaction )
> > System.Data.Sql Client.SqlConne ction.Open()
> > System.Data.Com mon.DbDataAdapt er.QuietOpen(ID bConnection
> > connection,
> > ConnectionState & originalState)
> > System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
> > startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
> > CommandBehavior behavior)
> > System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
> > startRecord,
> > Int32 maxRecords, String srcTable, IDbCommand command,
> > CommandBehavior
> > behavior)
> > System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, String

srcTable)
> > WebApplication1 .WebForm1.Page_ Load(Object sender, EventArgs e) in
> > c:\inetpub\wwwr oot\WebApplicat ion1\WebForm1.a spx.vb:46
> > System.Web.UI.C ontrol.OnLoad(E ventArgs e)
> > System.Web.UI.C ontrol.LoadRecu rsive()
> > System.Web.UI.P age.ProcessRequ estMain()
> >
> >
> > I have tried to following to fix the problem.
> >
> > 1) Tried to add the asp.net user to sql server
> >
> > 2) Removed tcp/ip from the connect types to sql server
> >
> > 3) added a new user which i called "aspnetuser " to both computers
> > then
> > when
> > into anonymous logins on IIS and added this user as the anonymous
> > login
> > user
> > and unchecked the let IIS control the password and typed in the
> > correct
> > password.
> >
> > 4) change the asp.net user that the install of vs.net added and added

them
> > to the admin group on both machines. I have no problem login into sql
> > server
> > (windows authentication) when i use my local account i created on the
> > xp
> > workstation for me (im in the admin group).
> >
> > The only thing i have not used is impersonation and id rather not
> > unless

i
> > have to. Course since i haven't tried it, i might have trouble with
> > it
> > too.
> >
> > Scratch what i just said above. I tried impersonaltion and it worked
> > but
> > id
> > rather not use this if at all possible. I want to use the security
> > that
> > vs.net set up for the "asp.net" user. Is this possible without using
> > impersonation?
> >
> > Thanks,
> > Brent
> >
> >
>
>



Nov 18 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2637
by: Marek Mhling | last post by:
My server (Apache/1.3.28 - PHP/4.3.3) is configured to receive gzipped data via: Header append Accept-Encoding "gzip, deflate" PHP is configured to send gzipped data via: php_value output_handler ob_gzhandler When downloading files from servers that send gzipped data as well, I'd like to get the filesize before and after my server decompresses them.
6
2854
by: Smitro | last post by:
Hi, I'm looking for a Tutorial about Authenticating using PHP and Linux User Accounts. Can some one point me in the right direction? Smitro
0
1762
by: Robert | last post by:
I get these errors when creating a asp .net web application project in VS 2003 on a remote web server: "Microsoft Development Environment The Web was created successfully, but an error occurred when trying to configure the application root for this Web. Web projects may not operate correctly without an application root. The returned error was: Active Directory Services cannot find the web server. A possible cause for this is an...
4
11525
by: Adam Clauss | last post by:
I have a C# service (running as Network Service account) that needs to access a fileshare: \\machinename\some\path This file share requires me to login with certain credentials. How can I specify these from the context of my application? Thanks! --
6
3813
by: Daniel Walzenbach | last post by:
Hi, I have a web application which sometimes throws an “out of memory” exception. To get an idea what happens I traced some values using performance monitor and got the following values (for one day): \\FFDS24\ASP.NET Applications(_LM_W3SVC_1_Root_ATV2004)\Errors During Execution: 7 \\FFDS24\ASP.NET Apps v1.1.4322(_LM_W3SVC_1_Root_ATV2004)\Compilations
10
8318
by: Martin Robins | last post by:
I need to access the scheduler service on a network computer in order to manipulate it remotely from .NET; I have all of the necessary code to perform the manipulation and it works - great - but I am having problems with authentication. I have tried using LogonUser and this works fine with a domain account, however it is not possible to use this with an account that is defined only on the remote computer - it only works with local or domain...
0
1678
by: acwomble | last post by:
I am working with a database on another system via a ssh tunnel using plink. We have setup an alias the local system for the remote database. I am able to connect and work from within Visual Studio if I connect to the remote database using with "SQL Server" as the data source and ".NET Framework Data Provider for OLEDB" as the data provider . If I change the data provider to ".NET Framework Data Provider for SQL Server" I get the...
1
1298
by: mirlisa | last post by:
We have an odd problem. Sometime this morning our classic asp web application stopped authenticating against active directory. This is our only "classic" asp app that authenticates against ad. Note that this app has been in production for three years with no problems. All .NET apps are authenticating fine from the same server. This same classic asp app authenticates fine from our development server. There have been no code changes to...
0
1804
by: exits funnel | last post by:
Hello, I apologize if this question is a bit vague and slightly off topic but I couldn't find an Analysis Services and/or ODBO specific newsgroup. In any event, I'm trying to address an issue in some code I've inherited from a colleague who is on vacation and unfortunately, it deals with ODBO, COM and Analysis Services, three topics with which I'm pretty unfamiliar. Having said that here is the situation as best I can explain it: the...
0
9793
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, well explore What is ONU, What Is Router, ONU & Routers main usage, and What is the difference between ONU and Router. Lets take a closer look ! Part I. Meaning of...
0
9642
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10774
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10491
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9315
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing, and deploymentwithout human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7746
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6951
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4411
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3959
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.