473,654 Members | 3,184 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ADO Recordset Save as XML error

When I try and save out a recordset from an ASP page as XML I get the
following error (the code is below) - I have ADO 2.8 installed and this
is running on win XP sp2 :

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

ADODB.Recordset error '800a0bb9'

Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.

----------------------------------------------------------
Const adOpenStatic = 3
Const adLockReadOnly = 1
Const adCmdText = 1
Const adPersistXML = 1

Dim rS
Dim conn
Dim sql
Dim xmlDoc

Set rS = Server.CreateOb ject ("ADODB.Records et")
Response.Conten tType = "text/xml"

Set conn = Server.CreateOb ject("ADODB.Con nection")
conn.Open "DSN=Test;UID=s a;PWD="

set xmlDoc=Server.C reateObject("Mi crosoft.XmlDom" )
xmlDoc.async = false
xmlDoc.preserve whitespace = false

sql = "SELECT * FROM test"
rS.open sql, conn, adOpenStatic, adLockReadOnly, adCmdText
rS.save xmlDoc, adPersistXML
rS.close

Set conn = nothing
Set rs = Nothing

-----------------------------------------------------------
Any ideas? Thanks.

Pierre
Nov 22 '05 #1
10 4114
Kasp wrote:
When I try and save out a recordset from an ASP page as XML I get the
following error (the code is below) - I have ADO 2.8 installed and
this is running on win XP sp2 :

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

ADODB.Recordset error '800a0bb9'

Arguments are of the wrong type, are out of acceptable range, or are
in conflict with one another.

----------------------------------------------------------
Which line of code causes this error?

Const adOpenStatic = 3
Const adLockReadOnly = 1
Const adCmdText = 1
Const adPersistXML = 1

Dim rS
Dim conn
Dim sql
Dim xmlDoc

Set rS = Server.CreateOb ject ("ADODB.Records et")
Response.Conten tType = "text/xml"

Set conn = Server.CreateOb ject("ADODB.Con nection")
conn.Open "DSN=Test;UID=s a;PWD="
You're using sa for an application??? bad idea.

set xmlDoc=Server.C reateObject("Mi crosoft.XmlDom" )
Try:
set xmlDoc=Server.C reateObject("ms xml2.DomDocumen t")
xmlDoc.async = false
xmlDoc.preserve whitespace = false

sql = "SELECT * FROM test"
rS.open sql, conn, adOpenStatic, adLockReadOnly, adCmdText
Nothing to do with your problem, but why use a static cursor? A forwardonly
cursor is all you need:

set rs = conn.execute(sq l,,adCmdText)
I would test rs for EOF before doing anything with it ...
rS.save xmlDoc, adPersistXML
rS.close

Set conn = nothing
Set rs = Nothing

-----------------------------------------------------------
Any ideas? Thanks.

Pierre


--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Nov 22 '05 #2
> Kasp wrote:
When I try and save out a recordset from an ASP page as XML I get the
following error (the code is below) - I have ADO 2.8 installed and
this is running on win XP sp2 :

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

ADODB.Recordset error '800a0bb9'

Arguments are of the wrong type, are out of acceptable range, or are
in conflict with one another.

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


Which line of code causes this error?


rS.save xmlDoc, adPersistXML
Const adOpenStatic = 3
Const adLockReadOnly = 1
Const adCmdText = 1
Const adPersistXML = 1

Dim rS
Dim conn
Dim sql
Dim xmlDoc

Set rS = Server.CreateOb ject ("ADODB.Records et")
Response.Conten tType = "text/xml"

Set conn = Server.CreateOb ject("ADODB.Con nection")
conn.Open "DSN=Test;UID=s a;PWD="


You're using sa for an application??? bad idea.


It is only for testing

set xmlDoc=Server.C reateObject("Mi crosoft.XmlDom" )


Try:
set xmlDoc=Server.C reateObject("ms xml2.DomDocumen t")


same error
xmlDoc.async = false
xmlDoc.preserve whitespace = false

sql = "SELECT * FROM test"
rS.open sql, conn, adOpenStatic, adLockReadOnly, adCmdText


Nothing to do with your problem, but why use a static cursor? A forwardonly
cursor is all you need:

set rs = conn.execute(sq l,,adCmdText)
I would test rs for EOF before doing anything with it ...
rS.save xmlDoc, adPersistXML
rS.close

Set conn = nothing
Set rs = Nothing

-----------------------------------------------------------
Any ideas? Thanks.

Pierre

Nov 22 '05 #3
"Kasp" <ka**@skynet.be > wrote in message
news:mn******** *************** @skynet.be...
When I try and save out a recordset from an ASP page as XML I get the
following error (the code is below) - I have ADO 2.8 installed and this
is running on win XP sp2 :

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

ADODB.Recordset error '800a0bb9'

Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.

----------------------------------------------------------
Const adOpenStatic = 3
Const adLockReadOnly = 1
Const adCmdText = 1
Const adPersistXML = 1

Dim rS
Dim conn
Dim sql
Dim xmlDoc

Set rS = Server.CreateOb ject ("ADODB.Records et")
Response.Conten tType = "text/xml"

Set conn = Server.CreateOb ject("ADODB.Con nection")
conn.Open "DSN=Test;UID=s a;PWD="

set xmlDoc=Server.C reateObject("Mi crosoft.XmlDom" )
xmlDoc.async = false
xmlDoc.preserve whitespace = false

sql = "SELECT * FROM test"
rS.open sql, conn, adOpenStatic, adLockReadOnly, adCmdText
rS.save xmlDoc, adPersistXML
rS.close

Set conn = nothing
Set rs = Nothing

-----------------------------------------------------------
Any ideas? Thanks.

Pierre

I tested your code and it works. The only modifications I made where to the
connection string and the sql statement. I used a UDL file for the
connection string and used my own test table since you did not provide
details on your test table.

1. What database/version are you using?

2. What's the DDL (Data Definition Language) for the test table?

3. What provider are you using in your DSN entry for the "Test" database?
Nov 22 '05 #4
> "Kasp" <ka**@skynet.be > wrote in message
news:mn******** *************** @skynet.be...
When I try and save out a recordset from an ASP page as XML I get the
following error (the code is below) - I have ADO 2.8 installed and this
is running on win XP sp2 :

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

ADODB.Recordset error '800a0bb9'

Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.

----------------------------------------------------------
Const adOpenStatic = 3
Const adLockReadOnly = 1
Const adCmdText = 1
Const adPersistXML = 1

Dim rS
Dim conn
Dim sql
Dim xmlDoc

Set rS = Server.CreateOb ject ("ADODB.Records et")
Response.Conten tType = "text/xml"

Set conn = Server.CreateOb ject("ADODB.Con nection")
conn.Open "DSN=Test;UID=s a;PWD="

set xmlDoc=Server.C reateObject("Mi crosoft.XmlDom" )
xmlDoc.async = false
xmlDoc.preserve whitespace = false

sql = "SELECT * FROM test"
rS.open sql, conn, adOpenStatic, adLockReadOnly, adCmdText
rS.save xmlDoc, adPersistXML
rS.close

Set conn = nothing
Set rs = Nothing

-----------------------------------------------------------
Any ideas? Thanks.

Pierre

I tested your code and it works. The only modifications I made where to the
connection string and the sql statement. I used a UDL file for the connection
string and used my own test table since you did not provide details on your
test table.

1. What database/version are you using?


Oracle 9.2
2. What's the DDL (Data Definition Language) for the test table?

what is a dll for a table?
3. What provider are you using in your DSN entry for the "Test" database?


Provider=MSDASQ L.1;
Extended Properties="DSN =Test;UID=xxx;P WD=xxx;SERVER=T est;"

If I use this code in VB it is working !
If I save the record in a text file, it is working !!
Nov 22 '05 #5
[snip]
1. What database/version are you using?

Oracle 9.2


This was a pretty important piece of information missing from your original
post. More on this below.

2. What's the DDL (Data Definition Language) for the test table?


what is a dll for a table?


Not DLL, DDL. It stands for Data Definition Language. Specifically, can you
provide the "CREATE TABLE" statement for the "Test" table. That will let us
know what the datatype/sizes are for each of the columns in your table. Of
particular interest in this situation would be any columns that are mapped
as adVariant, adIDispatch or adIUnknown in ADO. There's a note in the
documentation for the Save method of the Recordset object about fields of
these datatypes not being supported.

3. What provider are you using in your DSN entry for the "Test" database?


Provider=MSDASQ L.1;
Extended Properties="DSN =Test;UID=xxx;P WD=xxx;SERVER=T est;"


Have you tried using the native Oracle provider instead of the Microsoft
Oracle provider?

If I use this code in VB it is working !
Can we see the code?

If I save the record in a text file, it is working !!


Can we see the code?
Nov 22 '05 #6
Kasp wrote:
Kasp wrote:
When I try and save out a recordset from an ASP page as XML I get
the following error (the code is below) - I have ADO 2.8 installed
and this is running on win XP sp2 :

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

ADODB.Recordset error '800a0bb9'

Arguments are of the wrong type, are out of acceptable range, or are
in conflict with one another.

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


Which line of code causes this error?


rS.save xmlDoc, adPersistXML


This is sounding like either an MDAC problem or a problem with the MSXML
parser, with the former being more likely. You should try upgrading both to
the latest versions. Run Component Checker (a download from Microsoft) to
verify that you have no MDAC problems on the server.

Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Nov 22 '05 #7
> [snip]
1. What database/version are you using?


Oracle 9.2


This was a pretty important piece of information missing from your original
post. More on this below.

2. What's the DDL (Data Definition Language) for the test table?


what is a dll for a table?


Not DLL, DDL. It stands for Data Definition Language. Specifically, can you
provide the "CREATE TABLE" statement for the "Test" table. That will let us
know what the datatype/sizes are for each of the columns in your table. Of
particular interest in this situation would be any columns that are mapped as
adVariant, adIDispatch or adIUnknown in ADO. There's a note in the
documentation for the Save method of the Recordset object about fields of
these datatypes not being supported.


where can I find this information?
3. What provider are you using in your DSN entry for the "Test" database?


Provider=MSDASQ L.1;
Extended Properties="DSN =Test;UID=xxx;P WD=xxx;SERVER=T est;"


Have you tried using the native Oracle provider instead of the Microsoft
Oracle provider?


Yes
If I use this code in VB it is working !


Can we see the code?


Private Sub Form_Load()

Dim szConnect As String
Dim SQL As String

szConnect = "Provider=MSDAS QL;Data Source=xxx;User
Id=xxx;Password =xxx"
SQL = "SELECT * FROM bl"

Dim oRS As ADODB.Recordset
Dim oCN As ADODB.Connectio n

Set oCN = New ADODB.Connectio n
Set oRS = New ADODB.Recordset

With oCN
.CursorLocation = adUseClient
.ConnectionStri ng = szConnect
.ConnectionTime out = 5
.Open szConnect
End With

oRS.Open SQL, oCN

Dim xmlDoc As DOMDocument
Set xmlDoc = New DOMDocument

' To specify a specific version, use a declaration like the following,
with the appropriate version in the ProgID:
' Dim xmlDoc As MSXML2.DOMDocum ent40
' Set xmlDoc = New MSXML2.DOMDocum ent40

xmlDoc.async = False
oRS.Save xmlDoc, adPersistXML

If xmlDoc.parseErr or.errorCode <> 0 Then
MsgBox "Errors During Load" & vbCrLf &
xmlDoc.parseErr or.errorCode & xmlDoc.parseErr or.reason
Else
MsgBox xmlDoc.XML
End If

oRS.Close
oCN.Close
Set oRS = Nothing
Set oCN = Nothing

End Sub
If I save the record in a text file, it is working !!


Can we see the code?


Const adOpenStatic = 3
Const adLockReadOnly = 1
Const adCmdText = 1
Const adPersistXML = 1

Dim rS
Dim conn
Dim sql

Set rS = Server.CreateOb ject ("ADODB.Records et")
Response.Conten tType = "text/xml"

Set conn = Server.CreateOb ject("ADODB.Con nection")
conn.Open "DSN=Test;UID=s a;PWD="

sql = "SELECT * FROM test"
rS.open sql, conn, adOpenStatic, adLockReadOnly, adCmdText
rS.save "c:\\test.x ml", adPersistXML
rS.close

Set conn = nothing
Set rs = Nothing
Nov 22 '05 #8

"Kasp" <ka**@skynet.be > wrote in message
news:mn******** *************** @skynet.be...
[snip]
1. What database/version are you using?
Oracle 9.2


This was a pretty important piece of information missing from your
original post. More on this below.

2. What's the DDL (Data Definition Language) for the test table?
what is a dll for a table?


Not DLL, DDL. It stands for Data Definition Language. Specifically, can
you provide the "CREATE TABLE" statement for the "Test" table. That will
let us know what the datatype/sizes are for each of the columns in your
table. Of particular interest in this situation would be any columns that
are mapped as adVariant, adIDispatch or adIUnknown in ADO. There's a note
in the documentation for the Save method of the Recordset object about
fields of these datatypes not being supported.


where can I find this information?


It's been some time since I used Oracle, but if I remember correctly, you go
to Enterprise Manager. Double click the table in the object tree on the
left, then select the "show sql" button on the properties dialog box that
comes up.

3. What provider are you using in your DSN entry for the "Test"
database?

Provider=MSDASQ L.1;
Extended Properties="DSN =Test;UID=xxx;P WD=xxx;SERVER=T est;"


Have you tried using the native Oracle provider instead of the Microsoft
Oracle provider?


Yes


I'll assume by "yes", you mean "yes, I tried the native driver and still got
the same error".

If I use this code in VB it is working !


Can we see the code?


Private Sub Form_Load()

Dim szConnect As String
Dim SQL As String

szConnect = "Provider=MSDAS QL;Data Source=xxx;User Id=xxx;Password =xxx"
SQL = "SELECT * FROM bl"

Dim oRS As ADODB.Recordset
Dim oCN As ADODB.Connectio n

Set oCN = New ADODB.Connectio n
Set oRS = New ADODB.Recordset

With oCN
.CursorLocation = adUseClient
.ConnectionStri ng = szConnect
.ConnectionTime out = 5
.Open szConnect
End With

oRS.Open SQL, oCN

Dim xmlDoc As DOMDocument
Set xmlDoc = New DOMDocument

' To specify a specific version, use a declaration like the following,
with the appropriate version in the ProgID:
' Dim xmlDoc As MSXML2.DOMDocum ent40
' Set xmlDoc = New MSXML2.DOMDocum ent40

xmlDoc.async = False
oRS.Save xmlDoc, adPersistXML

If xmlDoc.parseErr or.errorCode <> 0 Then
MsgBox "Errors During Load" & vbCrLf & xmlDoc.parseErr or.errorCode
& xmlDoc.parseErr or.reason
Else
MsgBox xmlDoc.XML
End If

oRS.Close
oCN.Close
Set oRS = Nothing
Set oCN = Nothing

End Sub


You are using a different connection string in this code.

If I save the record in a text file, it is working !!


Can we see the code?


Const adOpenStatic = 3
Const adLockReadOnly = 1
Const adCmdText = 1
Const adPersistXML = 1

Dim rS
Dim conn
Dim sql

Set rS = Server.CreateOb ject ("ADODB.Records et")
Response.Conten tType = "text/xml"

Set conn = Server.CreateOb ject("ADODB.Con nection")
conn.Open "DSN=Test;UID=s a;PWD="

sql = "SELECT * FROM test"
rS.open sql, conn, adOpenStatic, adLockReadOnly, adCmdText
rS.save "c:\\test.x ml", adPersistXML
rS.close

Set conn = nothing
Set rs = Nothing


Have you checked the resulting test.xml file?
Nov 22 '05 #9
> "Kasp" <ka**@skynet.be > wrote in message
news:mn******** *************** @skynet.be...
[snip]
> 1. What database/version are you using?
>

Oracle 9.2

This was a pretty important piece of information missing from your
original post. More on this below.
> 2. What's the DDL (Data Definition Language) for the test table?
>

what is a dll for a table?

Not DLL, DDL. It stands for Data Definition Language. Specifically, can
you provide the "CREATE TABLE" statement for the "Test" table. That will
let us know what the datatype/sizes are for each of the columns in your
table. Of particular interest in this situation would be any columns that
are mapped as adVariant, adIDispatch or adIUnknown in ADO. There's a note
in the documentation for the Save method of the Recordset object about
fields of these datatypes not being supported.


where can I find this information?


It's been some time since I used Oracle, but if I remember correctly, you go
to Enterprise Manager. Double click the table in the object tree on the left,
then select the "show sql" button on the properties dialog box that comes up.

> 3. What provider are you using in your DSN entry for the "Test"
> database?

Provider=MSDASQ L.1;
Extended Properties="DSN =Test;UID=xxx;P WD=xxx;SERVER=T est;"

Have you tried using the native Oracle provider instead of the Microsoft
Oracle provider?


Yes


I'll assume by "yes", you mean "yes, I tried the native driver and still got
the same error".

If I use this code in VB it is working !

Can we see the code?


Private Sub Form_Load()

Dim szConnect As String
Dim SQL As String

szConnect = "Provider=MSDAS QL;Data Source=xxx;User Id=xxx;Password =xxx"
SQL = "SELECT * FROM bl"

Dim oRS As ADODB.Recordset
Dim oCN As ADODB.Connectio n

Set oCN = New ADODB.Connectio n
Set oRS = New ADODB.Recordset

With oCN
.CursorLocation = adUseClient
.ConnectionStri ng = szConnect
.ConnectionTime out = 5
.Open szConnect
End With

oRS.Open SQL, oCN

Dim xmlDoc As DOMDocument
Set xmlDoc = New DOMDocument

' To specify a specific version, use a declaration like the following, with
the appropriate version in the ProgID:
' Dim xmlDoc As MSXML2.DOMDocum ent40
' Set xmlDoc = New MSXML2.DOMDocum ent40

xmlDoc.async = False
oRS.Save xmlDoc, adPersistXML

If xmlDoc.parseErr or.errorCode <> 0 Then
MsgBox "Errors During Load" & vbCrLf & xmlDoc.parseErr or.errorCode &
xmlDoc.parseErr or.reason
Else
MsgBox xmlDoc.XML
End If

oRS.Close
oCN.Close
Set oRS = Nothing
Set oCN = Nothing

End Sub


You are using a different connection string in this code.

If I save the record in a text file, it is working !!

Can we see the code?


Const adOpenStatic = 3
Const adLockReadOnly = 1
Const adCmdText = 1
Const adPersistXML = 1

Dim rS
Dim conn
Dim sql

Set rS = Server.CreateOb ject ("ADODB.Records et")
Response.Conten tType = "text/xml"

Set conn = Server.CreateOb ject("ADODB.Con nection")
conn.Open "DSN=Test;UID=s a;PWD="

sql = "SELECT * FROM test"
rS.open sql, conn, adOpenStatic, adLockReadOnly, adCmdText
rS.save "c:\\test.x ml", adPersistXML
rS.close

Set conn = nothing
Set rs = Nothing


Have you checked the resulting test.xml file?


I found the problem ... It was permition access to the ora92 directory.

Thank you.

--
Pierre
Nov 22 '05 #10

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

Similar topics

6
1721
by: Alan Silver | last post by:
Hello, I have an ASP that takes a connection string and SQL statement in the querystring and is supposed to return the XML representation of the recordset to the Response stream (don't worry, this is a local page, not one on the Internet). I had it working fine with row-returning SQL, such as SELECT, but was trying to get it to work with non-row-returnign ones as well (such as UPDATE and DELETE). Not only can't I get this bit to work, I...
3
6883
by: Nathan Bloomfield | last post by:
Hi there, I am having difficulty with a piece of code which would work wonders for my application if only the error trapping worked properly. Basically, it works as follows: - adds records from rsSource into rsDest - if it finds a key violation then it deletes the current record from rsDest and adds the new record from rsSource. This works perfectly - but only for the first found duplicate record, it brings up the error
1
5907
by: Ray Holtz | last post by:
I have a database in Access 2003 (Access2000 file format). There are two tables that are being used: Employees and Items. It is linked by the Employee field so that one employee can have many items. I have a VB6 application that is tied into this database using an ADODB.Connection and uses two ADODB.Recordsets: rsEmployees and rsItems. I can pull data from the DB into the app with both recordsets. But I can only change data in rsItems...
0
1499
by: pierre.saucin | last post by:
When I try and save out a recordset from an ASP page as XML I get the following error (the code is below) - I have ADO 2.8 installed and this is running on win XP sp2 : ---------------------------------------------------------- ADODB.Recordset error '800a0bb9' Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
2
4802
by: technocraze | last post by:
Hi guys, I have encountered this error when updating the values to the MS Acess table. Error : Update on linked table failed. ODBC sql server error Timeout expired. MS Acess is my front end and sql server is my backend server. This error occured whenever i step through and when it reaches rs.update it jux hangs down there and thereafter it shwn the aforementioned error. I am using the RecordSet properties to add the values. Can I use...
0
11284
ADezii
by: ADezii | last post by:
Most Access Users realize that Recordsets, being virtual representations of a Query, Table, or SQL Statement, exist only in our PC's memory. They, and the data they contain, literally exist at one specific moment in time - then gone the next. Few of us realize, however, that they can be saved to disk and later retrieved to will. The technical jargon for this is called 'Persisting a Recordset' and I'll show you how it can be done. ADO has this...
4
4565
by: shank | last post by:
On this page... http://www.w3schools.com/ado/met_rs_save.asp ....it describes how to save a recordset to file with the following... You can save a Recordset in XML format: <% set xmlDoc=CreateObject("Microsoft.XMLDOM") set conn=Server.CreateObject("ADODB.Connection") conn.Provider="Microsoft.Jet.OLEDB.4.0"
0
8991
ADezii
by: ADezii | last post by:
When you create an ADO Recordset, you should have some idea as to what functionality the Recordset does/does not provide. Some critical questions may, and should, be: Can I add New Records to the Recordset? Does the Recordset support Bookmarks? Can we use the Find and/or Seek Methods with this Recordset? Does the Recordset support the use of Indexes? Will the Absoluteposition property be able to be used on this Recordset? etc....
6
2426
by: Harvey Triana | last post by:
Hello - I am migrating a large COM system solution to ASP.NET To transfer data from Web to client this application uses streams of ADO recordset, example: Clasic ASP (VB Script): <% Dim Rs ' Recordset of ADO ' populate recordset
0
8815
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
8708
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
8489
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
8594
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...
1
6161
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
4149
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
2716
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
1
1916
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1596
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.