473,666 Members | 2,333 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Looking for a quicker way to fill a datagrid???

Here is my code:

Dim availMach As New ASPNETProduct.m achinedb()

Dim dstMachList As DataSet

dstMachList = availMach.GetAv ailMach(theSear chVal, theSearchBy,
theMachCode1, theSearchView, SelSort, SelSortDir)

availMachList.D ataSource = dstMachList

Public Function GetAvailMach(By Val theSearchVal As String, ByVal theSearchBy
As String, ByVal MACH_CODE1 As String, ByVal theSearchView As String, ByVal
SelSort As String, ByVal SelSortDir As String) As DataSet

' Create Instance of Connection and Command Object

Dim myConnection As New
SqlConnection(C onfigurationSet tings.AppSettin gs("connectionS tring"))

Dim myCommand As New SqlDataAdapter( "SelectOpenInve ntory", myConnection)

' Mark the Command as a SPROC

myCommand.Selec tCommand.Comman dType = CommandType.Sto redProcedure

' Add Parameters to SPROC

Dim parametertheSea rchVal As New SqlParameter("@ theSearchVal",
SqlDbType.NVarC har, 100)

parametertheSea rchVal.Value = theSearchVal

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVal )

Dim parametertheSea rchBy As New SqlParameter("@ theSearchBy",
SqlDbType.NVarC har, 100)

parametertheSea rchBy.Value = theSearchBy

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchBy)

Dim parameterMACH_C ODE1 As New SqlParameter("@ MACH_CODE",
SqlDbType.NVarC har, 50)

parameterMACH_C ODE1.Value = MACH_CODE1

myCommand.Selec tCommand.Parame ters.Add(parame terMACH_CODE1)

Dim parametertheSea rchView As New SqlParameter("@ theSearchView",
SqlDbType.NVarC har, 50)

parametertheSea rchView.Value = theSearchView

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVie w)

Dim parameterSelSor t As New SqlParameter("@ SelSort", SqlDbType.NVarC har, 50)

parameterSelSor t.Value = SelSort

myCommand.Selec tCommand.Parame ters.Add(parame terSelSort)

Dim parameterSelSor tDir As New SqlParameter("@ SelSortDir",
SqlDbType.NVarC har, 10)

parameterSelSor tDir.Value = SelSortDir

myCommand.Selec tCommand.Parame ters.Add(parame terSelSortDir)

' Create and Fill the DataSet

Dim myDataSet As New DataSet

myCommand.Fill( myDataSet)

' Return the datareader

Return myDataSet

End Function
--

dave
Nov 17 '05 #1
5 1937
if fill is not fast enough for you, use a datareader to loop thru. remember
the reader is a fire hose cursor and you have to explicitly close it when
done or else it is considered blocked.

"Helixpoint " <da**@helixpoin t.com> wrote in message
news:ee******** ******@tk2msftn gp13.phx.gbl...
Here is my code:

Dim availMach As New ASPNETProduct.m achinedb()

Dim dstMachList As DataSet

dstMachList = availMach.GetAv ailMach(theSear chVal, theSearchBy,
theMachCode1, theSearchView, SelSort, SelSortDir)

availMachList.D ataSource = dstMachList

Public Function GetAvailMach(By Val theSearchVal As String, ByVal theSearchBy As String, ByVal MACH_CODE1 As String, ByVal theSearchView As String, ByVal SelSort As String, ByVal SelSortDir As String) As DataSet

' Create Instance of Connection and Command Object

Dim myConnection As New
SqlConnection(C onfigurationSet tings.AppSettin gs("connectionS tring"))

Dim myCommand As New SqlDataAdapter( "SelectOpenInve ntory", myConnection)

' Mark the Command as a SPROC

myCommand.Selec tCommand.Comman dType = CommandType.Sto redProcedure

' Add Parameters to SPROC

Dim parametertheSea rchVal As New SqlParameter("@ theSearchVal",
SqlDbType.NVarC har, 100)

parametertheSea rchVal.Value = theSearchVal

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVal )

Dim parametertheSea rchBy As New SqlParameter("@ theSearchBy",
SqlDbType.NVarC har, 100)

parametertheSea rchBy.Value = theSearchBy

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchBy)

Dim parameterMACH_C ODE1 As New SqlParameter("@ MACH_CODE",
SqlDbType.NVarC har, 50)

parameterMACH_C ODE1.Value = MACH_CODE1

myCommand.Selec tCommand.Parame ters.Add(parame terMACH_CODE1)

Dim parametertheSea rchView As New SqlParameter("@ theSearchView",
SqlDbType.NVarC har, 50)

parametertheSea rchView.Value = theSearchView

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVie w)

Dim parameterSelSor t As New SqlParameter("@ SelSort", SqlDbType.NVarC har, 50)
parameterSelSor t.Value = SelSort

myCommand.Selec tCommand.Parame ters.Add(parame terSelSort)

Dim parameterSelSor tDir As New SqlParameter("@ SelSortDir",
SqlDbType.NVarC har, 10)

parameterSelSor tDir.Value = SelSortDir

myCommand.Selec tCommand.Parame ters.Add(parame terSelSortDir)

' Create and Fill the DataSet

Dim myDataSet As New DataSet

myCommand.Fill( myDataSet)

' Return the datareader

Return myDataSet

End Function
--

dave

Nov 17 '05 #2
How much faster would a DataReader be? Doesn't Fill use a DataReader to fill
the DataSet?
--
John Saunders
Internet Engineer
jo***********@s urfcontrol.com

"Alvin Bruney" <vapordan_spam_ me_not@hotmail_ no_spamhotmail. com> wrote in
message news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
if fill is not fast enough for you, use a datareader to loop thru. remember the reader is a fire hose cursor and you have to explicitly close it when
done or else it is considered blocked.

"Helixpoint " <da**@helixpoin t.com> wrote in message
news:ee******** ******@tk2msftn gp13.phx.gbl...
Here is my code:

Dim availMach As New ASPNETProduct.m achinedb()

Dim dstMachList As DataSet

dstMachList = availMach.GetAv ailMach(theSear chVal, theSearchBy,
theMachCode1, theSearchView, SelSort, SelSortDir)

availMachList.D ataSource = dstMachList

Public Function GetAvailMach(By Val theSearchVal As String, ByVal

theSearchBy
As String, ByVal MACH_CODE1 As String, ByVal theSearchView As String,

ByVal
SelSort As String, ByVal SelSortDir As String) As DataSet

' Create Instance of Connection and Command Object

Dim myConnection As New
SqlConnection(C onfigurationSet tings.AppSettin gs("connectionS tring"))

Dim myCommand As New SqlDataAdapter( "SelectOpenInve ntory", myConnection)

' Mark the Command as a SPROC

myCommand.Selec tCommand.Comman dType = CommandType.Sto redProcedure

' Add Parameters to SPROC

Dim parametertheSea rchVal As New SqlParameter("@ theSearchVal",
SqlDbType.NVarC har, 100)

parametertheSea rchVal.Value = theSearchVal

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVal )

Dim parametertheSea rchBy As New SqlParameter("@ theSearchBy",
SqlDbType.NVarC har, 100)

parametertheSea rchBy.Value = theSearchBy

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchBy)

Dim parameterMACH_C ODE1 As New SqlParameter("@ MACH_CODE",
SqlDbType.NVarC har, 50)

parameterMACH_C ODE1.Value = MACH_CODE1

myCommand.Selec tCommand.Parame ters.Add(parame terMACH_CODE1)

Dim parametertheSea rchView As New SqlParameter("@ theSearchView",
SqlDbType.NVarC har, 50)

parametertheSea rchView.Value = theSearchView

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVie w)

Dim parameterSelSor t As New SqlParameter("@ SelSort", SqlDbType.NVarC har,

50)

parameterSelSor t.Value = SelSort

myCommand.Selec tCommand.Parame ters.Add(parame terSelSort)

Dim parameterSelSor tDir As New SqlParameter("@ SelSortDir",
SqlDbType.NVarC har, 10)

parameterSelSor tDir.Value = SelSortDir

myCommand.Selec tCommand.Parame ters.Add(parame terSelSortDir)

' Create and Fill the DataSet

Dim myDataSet As New DataSet

myCommand.Fill( myDataSet)

' Return the datareader

Return myDataSet

End Function
--

dave


Nov 17 '05 #3
underneath it does but there is a lot of extra overhead because the results
have to be packaged and stuffed into a dataset. the performance difference
is night and day.

"John Saunders" <jo***********@ surfcontrol.com > wrote in message
news:eH******** *****@TK2MSFTNG P09.phx.gbl...
How much faster would a DataReader be? Doesn't Fill use a DataReader to fill the DataSet?
--
John Saunders
Internet Engineer
jo***********@s urfcontrol.com

"Alvin Bruney" <vapordan_spam_ me_not@hotmail_ no_spamhotmail. com> wrote in
message news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
if fill is not fast enough for you, use a datareader to loop thru.

remember
the reader is a fire hose cursor and you have to explicitly close it when done or else it is considered blocked.

"Helixpoint " <da**@helixpoin t.com> wrote in message
news:ee******** ******@tk2msftn gp13.phx.gbl...
Here is my code:

Dim availMach As New ASPNETProduct.m achinedb()

Dim dstMachList As DataSet

dstMachList = availMach.GetAv ailMach(theSear chVal, theSearchBy,
theMachCode1, theSearchView, SelSort, SelSortDir)

availMachList.D ataSource = dstMachList

Public Function GetAvailMach(By Val theSearchVal As String, ByVal

theSearchBy
As String, ByVal MACH_CODE1 As String, ByVal theSearchView As String,

ByVal
SelSort As String, ByVal SelSortDir As String) As DataSet

' Create Instance of Connection and Command Object

Dim myConnection As New
SqlConnection(C onfigurationSet tings.AppSettin gs("connectionS tring"))

Dim myCommand As New SqlDataAdapter( "SelectOpenInve ntory", myConnection)
' Mark the Command as a SPROC

myCommand.Selec tCommand.Comman dType = CommandType.Sto redProcedure

' Add Parameters to SPROC

Dim parametertheSea rchVal As New SqlParameter("@ theSearchVal",
SqlDbType.NVarC har, 100)

parametertheSea rchVal.Value = theSearchVal

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVal )

Dim parametertheSea rchBy As New SqlParameter("@ theSearchBy",
SqlDbType.NVarC har, 100)

parametertheSea rchBy.Value = theSearchBy

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchBy)

Dim parameterMACH_C ODE1 As New SqlParameter("@ MACH_CODE",
SqlDbType.NVarC har, 50)

parameterMACH_C ODE1.Value = MACH_CODE1

myCommand.Selec tCommand.Parame ters.Add(parame terMACH_CODE1)

Dim parametertheSea rchView As New SqlParameter("@ theSearchView",
SqlDbType.NVarC har, 50)

parametertheSea rchView.Value = theSearchView

myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVie w)

Dim parameterSelSor t As New SqlParameter("@ SelSort",
SqlDbType.NVarC har, 50)

parameterSelSor t.Value = SelSort

myCommand.Selec tCommand.Parame ters.Add(parame terSelSort)

Dim parameterSelSor tDir As New SqlParameter("@ SelSortDir",
SqlDbType.NVarC har, 10)

parameterSelSor tDir.Value = SelSortDir

myCommand.Selec tCommand.Parame ters.Add(parame terSelSortDir)

' Create and Fill the DataSet

Dim myDataSet As New DataSet

myCommand.Fill( myDataSet)

' Return the datareader

Return myDataSet

End Function
--

dave



Nov 17 '05 #4
Interesting. I'll have to do some performance tests on that some day. I had
thought that, absent DataRelations, they'd just loop through the DataReader,
calling:

DataSet ds = something();
DataTable dt = ds.Tables[0];
DataReader reader = somethingElse() ;

while (reader.Read())
{
DataRow dr = dt.NewRow();
dr.ItemArray = reader.GetValue s();
dt.Rows.Add(dr) ;
}

Oh, well, one more mystery...
--
John Saunders
Internet Engineer
jo***********@s urfcontrol.com

"Alvin Bruney" <vapordan_spam_ me_not@hotmail_ no_spamhotmail. com> wrote in
message news:ue******** ********@TK2MSF TNGP11.phx.gbl. ..
underneath it does but there is a lot of extra overhead because the results have to be packaged and stuffed into a dataset. the performance difference
is night and day.

"John Saunders" <jo***********@ surfcontrol.com > wrote in message
news:eH******** *****@TK2MSFTNG P09.phx.gbl...
How much faster would a DataReader be? Doesn't Fill use a DataReader to

fill
the DataSet?
--
John Saunders
Internet Engineer
jo***********@s urfcontrol.com

"Alvin Bruney" <vapordan_spam_ me_not@hotmail_ no_spamhotmail. com> wrote in
message news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
if fill is not fast enough for you, use a datareader to loop thru.

remember
the reader is a fire hose cursor and you have to explicitly close it

when done or else it is considered blocked.

"Helixpoint " <da**@helixpoin t.com> wrote in message
news:ee******** ******@tk2msftn gp13.phx.gbl...
> Here is my code:
>
> Dim availMach As New ASPNETProduct.m achinedb()
>
> Dim dstMachList As DataSet
>
> dstMachList = availMach.GetAv ailMach(theSear chVal, theSearchBy,
> theMachCode1, theSearchView, SelSort, SelSortDir)
>
> availMachList.D ataSource = dstMachList
>
>
>
>
>
> Public Function GetAvailMach(By Val theSearchVal As String, ByVal
theSearchBy
> As String, ByVal MACH_CODE1 As String, ByVal theSearchView As String, ByVal
> SelSort As String, ByVal SelSortDir As String) As DataSet
>
> ' Create Instance of Connection and Command Object
>
> Dim myConnection As New
> SqlConnection(C onfigurationSet tings.AppSettin gs("connectionS tring"))
>
> Dim myCommand As New SqlDataAdapter( "SelectOpenInve ntory", myConnection) >
> ' Mark the Command as a SPROC
>
> myCommand.Selec tCommand.Comman dType = CommandType.Sto redProcedure
>
> ' Add Parameters to SPROC
>
> Dim parametertheSea rchVal As New SqlParameter("@ theSearchVal",
> SqlDbType.NVarC har, 100)
>
> parametertheSea rchVal.Value = theSearchVal
>
> myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVal )
>
> Dim parametertheSea rchBy As New SqlParameter("@ theSearchBy",
> SqlDbType.NVarC har, 100)
>
> parametertheSea rchBy.Value = theSearchBy
>
> myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchBy)
>
>
>
> Dim parameterMACH_C ODE1 As New SqlParameter("@ MACH_CODE",
> SqlDbType.NVarC har, 50)
>
> parameterMACH_C ODE1.Value = MACH_CODE1
>
> myCommand.Selec tCommand.Parame ters.Add(parame terMACH_CODE1)
>
>
>
> Dim parametertheSea rchView As New SqlParameter("@ theSearchView",
> SqlDbType.NVarC har, 50)
>
> parametertheSea rchView.Value = theSearchView
>
> myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVie w)
>
> Dim parameterSelSor t As New SqlParameter("@ SelSort", SqlDbType.NVarC har, 50)
>
> parameterSelSor t.Value = SelSort
>
> myCommand.Selec tCommand.Parame ters.Add(parame terSelSort)
>
> Dim parameterSelSor tDir As New SqlParameter("@ SelSortDir",
> SqlDbType.NVarC har, 10)
>
> parameterSelSor tDir.Value = SelSortDir
>
> myCommand.Selec tCommand.Parame ters.Add(parame terSelSortDir)
>
>
>
>
>
> ' Create and Fill the DataSet
>
> Dim myDataSet As New DataSet
>
> myCommand.Fill( myDataSet)
>
> ' Return the datareader
>
> Return myDataSet
>
> End Function
>
>
> --
>
> dave
>
>



Nov 17 '05 #5
Interesting. I'll have to do some performance tests on that some day. I had
thought that, absent DataRelations, they'd just loop through the DataReader,
calling:

DataSet ds = something();
DataTable dt = ds.Tables[0];
DataReader reader = somethingElse() ;

while (reader.Read())
{
DataRow dr = dt.NewRow();
dr.ItemArray = reader.GetValue s();
dt.Rows.Add(dr) ;
}

Oh, well, one more mystery...
--
John Saunders
Internet Engineer
jo***********@s urfcontrol.com

"Alvin Bruney" <vapordan_spam_ me_not@hotmail_ no_spamhotmail. com> wrote in
message news:ue******** ********@TK2MSF TNGP11.phx.gbl. ..
underneath it does but there is a lot of extra overhead because the results have to be packaged and stuffed into a dataset. the performance difference
is night and day.

"John Saunders" <jo***********@ surfcontrol.com > wrote in message
news:eH******** *****@TK2MSFTNG P09.phx.gbl...
How much faster would a DataReader be? Doesn't Fill use a DataReader to

fill
the DataSet?
--
John Saunders
Internet Engineer
jo***********@s urfcontrol.com

"Alvin Bruney" <vapordan_spam_ me_not@hotmail_ no_spamhotmail. com> wrote in
message news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
if fill is not fast enough for you, use a datareader to loop thru.

remember
the reader is a fire hose cursor and you have to explicitly close it

when done or else it is considered blocked.

"Helixpoint " <da**@helixpoin t.com> wrote in message
news:ee******** ******@tk2msftn gp13.phx.gbl...
> Here is my code:
>
> Dim availMach As New ASPNETProduct.m achinedb()
>
> Dim dstMachList As DataSet
>
> dstMachList = availMach.GetAv ailMach(theSear chVal, theSearchBy,
> theMachCode1, theSearchView, SelSort, SelSortDir)
>
> availMachList.D ataSource = dstMachList
>
>
>
>
>
> Public Function GetAvailMach(By Val theSearchVal As String, ByVal
theSearchBy
> As String, ByVal MACH_CODE1 As String, ByVal theSearchView As String, ByVal
> SelSort As String, ByVal SelSortDir As String) As DataSet
>
> ' Create Instance of Connection and Command Object
>
> Dim myConnection As New
> SqlConnection(C onfigurationSet tings.AppSettin gs("connectionS tring"))
>
> Dim myCommand As New SqlDataAdapter( "SelectOpenInve ntory", myConnection) >
> ' Mark the Command as a SPROC
>
> myCommand.Selec tCommand.Comman dType = CommandType.Sto redProcedure
>
> ' Add Parameters to SPROC
>
> Dim parametertheSea rchVal As New SqlParameter("@ theSearchVal",
> SqlDbType.NVarC har, 100)
>
> parametertheSea rchVal.Value = theSearchVal
>
> myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVal )
>
> Dim parametertheSea rchBy As New SqlParameter("@ theSearchBy",
> SqlDbType.NVarC har, 100)
>
> parametertheSea rchBy.Value = theSearchBy
>
> myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchBy)
>
>
>
> Dim parameterMACH_C ODE1 As New SqlParameter("@ MACH_CODE",
> SqlDbType.NVarC har, 50)
>
> parameterMACH_C ODE1.Value = MACH_CODE1
>
> myCommand.Selec tCommand.Parame ters.Add(parame terMACH_CODE1)
>
>
>
> Dim parametertheSea rchView As New SqlParameter("@ theSearchView",
> SqlDbType.NVarC har, 50)
>
> parametertheSea rchView.Value = theSearchView
>
> myCommand.Selec tCommand.Parame ters.Add(parame tertheSearchVie w)
>
> Dim parameterSelSor t As New SqlParameter("@ SelSort", SqlDbType.NVarC har, 50)
>
> parameterSelSor t.Value = SelSort
>
> myCommand.Selec tCommand.Parame ters.Add(parame terSelSort)
>
> Dim parameterSelSor tDir As New SqlParameter("@ SelSortDir",
> SqlDbType.NVarC har, 10)
>
> parameterSelSor tDir.Value = SelSortDir
>
> myCommand.Selec tCommand.Parame ters.Add(parame terSelSortDir)
>
>
>
>
>
> ' Create and Fill the DataSet
>
> Dim myDataSet As New DataSet
>
> myCommand.Fill( myDataSet)
>
> ' Return the datareader
>
> Return myDataSet
>
> End Function
>
>
> --
>
> dave
>
>



Nov 17 '05 #6

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

Similar topics

4
1266
by: M. Craig | last post by:
I'm trying to display multiple resultsets, returned in a SQLDataReader, in a single table. The number of resultsets returned is variable, usually 3 or 4. Basically, each resultset has 1 row and I'd like to display each row as a row in the same table. I'd like to use the DataGrid if possible. Here is my original idea: 1. Get returned DataReader 2. For each DataSet returned, create a DataGrid control, populate and display a. First...
6
1613
by: JeffB | last post by:
I have tried several different methods of getting a datagrid to fill with information. Below is the code I'm now using. When viewed in the browser and the text box filled with a parameter value (i.e. CA for Calif), the datagrids header is displayed when the button is clicked, but no data is displayed. I used SQL Profiler and can see that the query comes across with the parameter, and if I take that query string and use it exactly in Query...
4
3748
by: Dave Edwards | last post by:
I understand that I can fill a datagrid with multiple queries, but I cannot figure out how to fill a dataset with the same query but run against multiple SQL servers, the query , table structure and username, password etc will be exactly the same for each server, the only thing that will change is the server name. Idealy I would like to get the server names from a seperate dataset so there could be any number of servers, allthough in...
4
4528
by: jaYPee | last post by:
I have 1 dataset called "dataset1" that contains 2 tables called "course" and "courseload". in my form i have a datagrid. the datasource of this datagrid is "dataset1" and the datamember is "courseload". here's the fields of every table in my dataset. "Course" table CourseID
0
8440
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
8352
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
8780
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...
1
8549
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8636
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
7378
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
4192
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...
1
2765
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
2005
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.