473,657 Members | 2,456 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Need to debug/trace ADO's Fill method

I have a website where cataloge pages are populated by calling a stored
procedure on sql server. I use the sql data adapter's fill method to call
this stored procedure and fill the dataset. about 6 to 15 times a day the
server hangs and times out when this fill method is called. The SP is
simple and uses very little resources (as tested using client statistics in
query analyzer). Here's data from my error log which includes the
exception:

Log ID: 722
Mod: da_Catalog,
Proc: Get_ProductList ingGrid,
ID=143,
CustID=0
ex.Message=Time out expired. The timeout period elapsed prior to completion
of the operation or the server is not responding.
ex.StackTrace= at
System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or cmdBehavior,
RunBehavior runBehavior, Boolean returnStream)
at System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or
behavior)
at
System.Data.Sql Client.SqlComma nd.System.Data. IDbCommand.Exec uteReader(Comma ndBehavior
behavior)
at System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet)
at Charmpix.da_Cat alog.Get_Produc tListingGrid(In t32 ID, Int32 CustID)
Time Stamp: 10/19/2004 11:18:37 PM
The application is being hosted in a shared environment, but the ISP is very
good and has extremely knowledgeable technicians helping on the backend.
They cant find any issues with their servers and are asking for more
information from me.

Is there anyway I can log a stack trace starting from the point where Fill
Method is called so we can see exactly where the code is hanging? We would
like to know if its hanging on IIS where the fill method is, or is it
hanging on the sql server then the SP is trying to execute.

Can anyone help me trouble shoot this?

Thanks!

--
mo*******@nospa m.com
Nov 21 '05 #1
5 2294
3 things I can think of:

1) Some sort of deadlocking - do you have transactions or something else
that might cause a deadlock
2) Need to increase command timeout as the query cannot complete in the time
specified
3) The SQL Server is busy doing other work (perhaps from someone else's app)
and just doesn't have enough resources to complete your request.

I don't think you are going to be able to get anywhere else as far as
debugging further into this - fill is a framework method, you cannot debug
into it.

"moondaddy" <mo*******@nosp am.com> wrote in message
news:en******** ******@TK2MSFTN GP14.phx.gbl...
I have a website where cataloge pages are populated by calling a stored
procedure on sql server. I use the sql data adapter's fill method to call
this stored procedure and fill the dataset. about 6 to 15 times a day the
server hangs and times out when this fill method is called. The SP is
simple and uses very little resources (as tested using client statistics in query analyzer). Here's data from my error log which includes the
exception:

Log ID: 722
Mod: da_Catalog,
Proc: Get_ProductList ingGrid,
ID=143,
CustID=0
ex.Message=Time out expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
ex.StackTrace= at
System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or cmdBehavior, RunBehavior runBehavior, Boolean returnStream)
at System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or
behavior)
at
System.Data.Sql Client.SqlComma nd.System.Data. IDbCommand.Exec uteReader(Comma n
dBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet)
at Charmpix.da_Cat alog.Get_Produc tListingGrid(In t32 ID, Int32 CustID)
Time Stamp: 10/19/2004 11:18:37 PM
The application is being hosted in a shared environment, but the ISP is very good and has extremely knowledgeable technicians helping on the backend.
They cant find any issues with their servers and are asking for more
information from me.

Is there anyway I can log a stack trace starting from the point where Fill
Method is called so we can see exactly where the code is hanging? We would like to know if its hanging on IIS where the fill method is, or is it
hanging on the sql server then the SP is trying to execute.

Can anyone help me trouble shoot this?

Thanks!

--
mo*******@nospa m.com

Nov 21 '05 #2
Hi,

In addition to Marina's comments Here is a link on How to debug a stored
procedure.

http://support.microsoft.com/default...b;en-us;316549

Ken
------------------------
"moondaddy" <mo*******@nosp am.com> wrote in message
news:en******** ******@TK2MSFTN GP14.phx.gbl...
I have a website where cataloge pages are populated by calling a stored
procedure on sql server. I use the sql data adapter's fill method to call
this stored procedure and fill the dataset. about 6 to 15 times a day the
server hangs and times out when this fill method is called. The SP is
simple and uses very little resources (as tested using client statistics in
query analyzer). Here's data from my error log which includes the
exception:

Log ID: 722
Mod: da_Catalog,
Proc: Get_ProductList ingGrid,
ID=143,
CustID=0
ex.Message=Time out expired. The timeout period elapsed prior to completion
of the operation or the server is not responding.
ex.StackTrace= at
System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or cmdBehavior,
RunBehavior runBehavior, Boolean returnStream)
at System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or
behavior)
at
System.Data.Sql Client.SqlComma nd.System.Data. IDbCommand.Exec uteReader(Comma ndBehavior
behavior)
at System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet)
at Charmpix.da_Cat alog.Get_Produc tListingGrid(In t32 ID, Int32 CustID)
Time Stamp: 10/19/2004 11:18:37 PM
The application is being hosted in a shared environment, but the ISP is very
good and has extremely knowledgeable technicians helping on the backend.
They cant find any issues with their servers and are asking for more
information from me.

Is there anyway I can log a stack trace starting from the point where Fill
Method is called so we can see exactly where the code is hanging? We would
like to know if its hanging on IIS where the fill method is, or is it
hanging on the sql server then the SP is trying to execute.

Can anyone help me trouble shoot this?

Thanks!

--
mo*******@nospa m.com

Nov 21 '05 #3
Thanks to both of your replies and here's my response.
1) deadlock is not likely as I'm not using temp tables in the SP and we're
not performing transactions. Just simple a select statement.

2) The command timeout is already pretty long. The fact that its timing out
means there's already an issue happening. Also, by waiting so long to
timeout (refering to the current timeout period) the user browsing our site
will have become disgruntled and probably gone elsewhere. Therefore, its
really important to resolve the real problem.

3) SQL server could be real busy, but once again, this SP is very simple and
executes very quickly. Its possible the server is too busy, but the ISP has
been monitoring it and doesn't see anything that suggests its too busy.

FYI: the ISP is MaximumASP and I think you will find them a very credible
service provider that's extremely competent on the back end.

As for debugging the stored procedure:
A) I could hit this SP 200 times and it would fire perfectly, then later on
in the day it will hang a few times with in a span of a few minutes or few
hours. Its very difficult to catch.
B) The server's I'm using are remotely hosted at MaximumASP and from what I
know, debugging would be difficult or impossible to do in that scenario. I
don't have this problem on my local dev network.

Any more feedback would be greatly appreciated.

Thanks Again!

--
mo*******@nospa m.com
"Ken Tucker [MVP]" <vb***@bellsout h.net> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Hi,

In addition to Marina's comments Here is a link on How to debug a
stored
procedure.

http://support.microsoft.com/default...b;en-us;316549

Ken
------------------------
"moondaddy" <mo*******@nosp am.com> wrote in message
news:en******** ******@TK2MSFTN GP14.phx.gbl...
I have a website where cataloge pages are populated by calling a stored
procedure on sql server. I use the sql data adapter's fill method to call
this stored procedure and fill the dataset. about 6 to 15 times a day the
server hangs and times out when this fill method is called. The SP is
simple and uses very little resources (as tested using client statistics
in
query analyzer). Here's data from my error log which includes the
exception:

Log ID: 722
Mod: da_Catalog,
Proc: Get_ProductList ingGrid,
ID=143,
CustID=0
ex.Message=Time out expired. The timeout period elapsed prior to
completion
of the operation or the server is not responding.
ex.StackTrace= at
System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or
cmdBehavior,
RunBehavior runBehavior, Boolean returnStream)
at System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or
behavior)
at
System.Data.Sql Client.SqlComma nd.System.Data. IDbCommand.Exec uteReader(Comma ndBehavior
behavior)
at System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet)
at Charmpix.da_Cat alog.Get_Produc tListingGrid(In t32 ID, Int32 CustID)
Time Stamp: 10/19/2004 11:18:37 PM
The application is being hosted in a shared environment, but the ISP is
very
good and has extremely knowledgeable technicians helping on the backend.
They cant find any issues with their servers and are asking for more
information from me.

Is there anyway I can log a stack trace starting from the point where Fill
Method is called so we can see exactly where the code is hanging? We
would
like to know if its hanging on IIS where the fill method is, or is it
hanging on the sql server then the SP is trying to execute.

Can anyone help me trouble shoot this?

Thanks!

--
mo*******@nospa m.com

Nov 21 '05 #4
Regardless of how simple it is, if the sql server is being completely
consumed by some other long running query, then it won't be able to execute
the simplest of queries.

I agree that it is unlikely that you will be able to sucessfully debug
anything on a server being hosted elsewhere.

Perhaps you could ask your ISP to move the database you are using to another
SQL Server to see if the problem persists.

"moondaddy" <mo*******@nosp am.com> wrote in message
news:Oe******** ******@TK2MSFTN GP15.phx.gbl...
Thanks to both of your replies and here's my response.
1) deadlock is not likely as I'm not using temp tables in the SP and we're
not performing transactions. Just simple a select statement.

2) The command timeout is already pretty long. The fact that its timing out means there's already an issue happening. Also, by waiting so long to
timeout (refering to the current timeout period) the user browsing our site will have become disgruntled and probably gone elsewhere. Therefore, its
really important to resolve the real problem.

3) SQL server could be real busy, but once again, this SP is very simple and executes very quickly. Its possible the server is too busy, but the ISP has been monitoring it and doesn't see anything that suggests its too busy.

FYI: the ISP is MaximumASP and I think you will find them a very credible
service provider that's extremely competent on the back end.

As for debugging the stored procedure:
A) I could hit this SP 200 times and it would fire perfectly, then later on in the day it will hang a few times with in a span of a few minutes or few
hours. Its very difficult to catch.
B) The server's I'm using are remotely hosted at MaximumASP and from what I know, debugging would be difficult or impossible to do in that scenario. I don't have this problem on my local dev network.

Any more feedback would be greatly appreciated.

Thanks Again!

--
mo*******@nospa m.com
"Ken Tucker [MVP]" <vb***@bellsout h.net> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Hi,

In addition to Marina's comments Here is a link on How to debug a
stored
procedure.

http://support.microsoft.com/default...b;en-us;316549

Ken
------------------------
"moondaddy" <mo*******@nosp am.com> wrote in message
news:en******** ******@TK2MSFTN GP14.phx.gbl...
I have a website where cataloge pages are populated by calling a stored
procedure on sql server. I use the sql data adapter's fill method to call this stored procedure and fill the dataset. about 6 to 15 times a day the server hangs and times out when this fill method is called. The SP is
simple and uses very little resources (as tested using client statistics
in
query analyzer). Here's data from my error log which includes the
exception:

Log ID: 722
Mod: da_Catalog,
Proc: Get_ProductList ingGrid,
ID=143,
CustID=0
ex.Message=Time out expired. The timeout period elapsed prior to
completion
of the operation or the server is not responding.
ex.StackTrace= at
System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or
cmdBehavior,
RunBehavior runBehavior, Boolean returnStream)
at System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or
behavior)
at
System.Data.Sql Client.SqlComma nd.System.Data. IDbCommand.Exec uteReader(Comma n
dBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
CommandBehavior behavior)
at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet)
at Charmpix.da_Cat alog.Get_Produc tListingGrid(In t32 ID, Int32 CustID)
Time Stamp: 10/19/2004 11:18:37 PM
The application is being hosted in a shared environment, but the ISP is
very
good and has extremely knowledgeable technicians helping on the backend.
They cant find any issues with their servers and are asking for more
information from me.

Is there anyway I can log a stack trace starting from the point where Fill Method is called so we can see exactly where the code is hanging? We
would
like to know if its hanging on IIS where the fill method is, or is it
hanging on the sql server then the SP is trying to execute.

Can anyone help me trouble shoot this?

Thanks!

--
mo*******@nospa m.com


Nov 21 '05 #5
Thanks for all the feedback. I already put in a request to move my db to a
different server. Wish me luck...

--
mo*******@nospa m.com
"Marina" <so*****@nospam .com> wrote in message
news:Oy******** ******@TK2MSFTN GP11.phx.gbl...
Regardless of how simple it is, if the sql server is being completely
consumed by some other long running query, then it won't be able to
execute
the simplest of queries.

I agree that it is unlikely that you will be able to sucessfully debug
anything on a server being hosted elsewhere.

Perhaps you could ask your ISP to move the database you are using to
another
SQL Server to see if the problem persists.

"moondaddy" <mo*******@nosp am.com> wrote in message
news:Oe******** ******@TK2MSFTN GP15.phx.gbl...
Thanks to both of your replies and here's my response.
1) deadlock is not likely as I'm not using temp tables in the SP and
we're
not performing transactions. Just simple a select statement.

2) The command timeout is already pretty long. The fact that its timing

out
means there's already an issue happening. Also, by waiting so long to
timeout (refering to the current timeout period) the user browsing our

site
will have become disgruntled and probably gone elsewhere. Therefore, its
really important to resolve the real problem.

3) SQL server could be real busy, but once again, this SP is very simple

and
executes very quickly. Its possible the server is too busy, but the ISP

has
been monitoring it and doesn't see anything that suggests its too busy.

FYI: the ISP is MaximumASP and I think you will find them a very
credible
service provider that's extremely competent on the back end.

As for debugging the stored procedure:
A) I could hit this SP 200 times and it would fire perfectly, then later

on
in the day it will hang a few times with in a span of a few minutes or
few
hours. Its very difficult to catch.
B) The server's I'm using are remotely hosted at MaximumASP and from
what

I
know, debugging would be difficult or impossible to do in that scenario.

I
don't have this problem on my local dev network.

Any more feedback would be greatly appreciated.

Thanks Again!

--
mo*******@nospa m.com
"Ken Tucker [MVP]" <vb***@bellsout h.net> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
> Hi,
>
> In addition to Marina's comments Here is a link on How to debug a
> stored
> procedure.
>
> http://support.microsoft.com/default...b;en-us;316549
>
> Ken
> ------------------------
> "moondaddy" <mo*******@nosp am.com> wrote in message
> news:en******** ******@TK2MSFTN GP14.phx.gbl...
> I have a website where cataloge pages are populated by calling a stored
> procedure on sql server. I use the sql data adapter's fill method to call > this stored procedure and fill the dataset. about 6 to 15 times a day the > server hangs and times out when this fill method is called. The SP is
> simple and uses very little resources (as tested using client
> statistics
> in
> query analyzer). Here's data from my error log which includes the
> exception:
>
> Log ID: 722
> Mod: da_Catalog,
> Proc: Get_ProductList ingGrid,
> ID=143,
> CustID=0
> ex.Message=Time out expired. The timeout period elapsed prior to
> completion
> of the operation or the server is not responding.
> ex.StackTrace= at
> System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or
> cmdBehavior,
> RunBehavior runBehavior, Boolean returnStream)
> at System.Data.Sql Client.SqlComma nd.ExecuteReade r(CommandBehavi or
> behavior)
> at
> System.Data.Sql Client.SqlComma nd.System.Data. IDbCommand.Exec uteReader(Comma n
dBehavior > behavior)
> at System.Data.Com mon.DbDataAdapt er.FillFromComm and(Object data,
> Int32
> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
> CommandBehavior behavior)
> at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet, Int32
> startRecord, Int32 maxRecords, String srcTable, IDbCommand command,
> CommandBehavior behavior)
> at System.Data.Com mon.DbDataAdapt er.Fill(DataSet dataSet)
> at Charmpix.da_Cat alog.Get_Produc tListingGrid(In t32 ID, Int32 CustID)
> Time Stamp: 10/19/2004 11:18:37 PM
>
>
> The application is being hosted in a shared environment, but the ISP is
> very
> good and has extremely knowledgeable technicians helping on the
> backend.
> They cant find any issues with their servers and are asking for more
> information from me.
>
> Is there anyway I can log a stack trace starting from the point where Fill > Method is called so we can see exactly where the code is hanging? We
> would
> like to know if its hanging on IIS where the fill method is, or is it
> hanging on the sql server then the SP is trying to execute.
>
> Can anyone help me trouble shoot this?
>
> Thanks!
>
>
>
> --
> mo*******@nospa m.com
>
>
>



Nov 21 '05 #6

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

Similar topics

1
6070
by: JingleBEV | last post by:
Hi all, I don't seem to get this going, possibly lacking the knowledge of dao recordset. I try to fill this Datagrid with the DAO.recordset, but it keeps giving me the error 13 - datatype mismatch. Can somesone shed some light please. I define rsDepartmentList as Dao.recordset
5
6595
by: David Krmpotic | last post by:
it's me again.. with quite interesting discovery :) I was tracing an error for 3 hours instead of 3 minutes because of this surprise. Recently I'm compiling this project in RELEASE with Debug info turned on so that it creates .PDB files and I can see the line numbers in stack trace. To my surprise, release version of .pdb pointed me only to the beginning of
4
718
by: A.M | last post by:
Hi, If I use System.Diagnostics.Debug.WriteLine in a asp.net application, where does the output go? Is there any trace monitor application thar shows me the trace output? Thanks, Allan
1
1096
by: nita | last post by:
Hi, I am trying to Accessing an ADO Recordset or Record from ADO.NET. myDA.Fill(myDS, adoRS, "Employee") the above statement generates the build error - C:\Inetpub\wwwroot\comnet\ListEmployee.aspx.vb(46): Overload resolution failed because no accessible 'Fill' accepts this number of arguments.
7
9528
by: Alan Pretre | last post by:
I have an application installed at a customer site that has been getting a general network error for a couple of years. I was hoping that .NET 2.0 would clear it up, but unfortunately it didn't. The .NET 2.0 exception does give a little more info than .NET 1.1 did, but not much. Can anybody give any pointers about how to track this down? It occurs every 10 hrs around the clock, like clockwork. I have included the stack trace, but...
5
2150
by: Lyle Fairfield | last post by:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/adonetprogmsdn.asp The Design of ADO To better understand the model and design of ADO.NET, it is helpful to review some of the core aspects of ADO. ADO uses a single object, the Recordset, as a common representation for working with all types of data. The Recordset is used for working with a forward-only stream of results from a database, for scrolling...
5
1943
by: Mr. SweatyFinger | last post by:
WHY CAN'T THE CLOWN -HOLES WHO WROTE ASP.NET PROVIDE AN ERROR LINE NUMBER??? HONEST TO SH@THOLE PETE Server Error in '/New Folder (7)' Application. -------------------------------------------------------------------------------- The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator. Description: An unhandled exception occurred during the execution of the current web request....
0
2558
by: shamirza | last post by:
ADO.Net Making the Connection: Accessing Your Database using ADO.NET Data Access Namespaces Within the .NET framework class library (FCL) version 1.1, there are five third-level namespaces that provide access to an underlying database. These are System.Data.SqlClient, System.Data.SqlServerCE, System.Data.OracleClient, System.Data.OleDb, and System.Data.Odbc. As their names imply, these are used to connect to MS SQL Server, MS SQL Server...
2
1479
by: neocarl | last post by:
Hi, I am fairly new to VB.net and ADO.net. I am having a problem when Connecting the database to to website i am creating with vb.net. Basically The final step I did was create the datagrid, so the databse would fill inside it. However, on the design time window it is visible, but when I run it from debug mode, the datagrid dissapears. Any suggestion? This is the code i wrote inside the fill button to fill the datagrid:
0
8392
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, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8305
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
8823
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
8726
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
8603
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7320
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 project—planning, coding, testing, and deployment—without 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...
0
5632
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();...
0
4151
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1944
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.