473,505 Members | 15,036 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C# - SQLDriverConnect

Does anyone know what API I need to include to be able to
use the SQLDriverConnect function with C#? I was given a
code example on how to setup my DSN-less connection and I
keep getting a pop-up dialog box to configure my
connection. I want to use the SQLDriverConnect function
so that I can utilize the SQL_DRIVER_NOPROMPT parameter.

If anyone has any insight to this it would be greatly
appreciated.

Thanks,
Dale
Nov 15 '05 #1
5 4611

Hi Dale,

Do you hard-coded your data source connection string into your application?
If so, in .Net I think you can use System.Data.Odbc.OdbcConnection class
instead.
Also, you can place your connection into the config file to add some
facility.

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| Content-Class: urn:content-classes:message
| From: "Dale Magnuson" <ma***********@mayo.edu>
| Sender: "Dale Magnuson" <ma***********@mayo.edu>
| Subject: C# - SQLDriverConnect
| Date: Fri, 26 Sep 2003 06:30:59 -0700
| Lines: 12
| Message-ID: <20****************************@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Thread-Index: AcOEMmvqB0Mbm2ocQS66yGg4H3ryJg==
| Newsgroups: microsoft.public.dotnet.languages.csharp
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:187538
| NNTP-Posting-Host: TK2MSFTNGXA09 10.40.1.161
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| Does anyone know what API I need to include to be able to
| use the SQLDriverConnect function with C#? I was given a
| code example on how to setup my DSN-less connection and I
| keep getting a pop-up dialog box to configure my
| connection. I want to use the SQLDriverConnect function
| so that I can utilize the SQL_DRIVER_NOPROMPT parameter.
|
| If anyone has any insight to this it would be greatly
| appreciated.
|
| Thanks,
| Dale
|

Nov 15 '05 #2
The problem that I am having with
System.Data.Odbc.OdbcConnection is that it doesn't seem to
contain a SQL_DRIVER_NOPROMPT parameter anywhere. The
SQLDriverConnect has an option for this parameter, but I
cannot find one in the ODBC class.

Any suggestions?

-----Original Message-----

Hi Dale,

Do you hard-coded your data source connection string into your application?If so, in .Net I think you can use System.Data.Odbc.OdbcConnection classinstead.
Also, you can place your connection into the config file to add somefacility.

Hope this helps,
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
--------------------
| Content-Class: urn:content-classes:message
| From: "Dale Magnuson" <ma***********@mayo.edu>
| Sender: "Dale Magnuson" <ma***********@mayo.edu>
| Subject: C# - SQLDriverConnect
| Date: Fri, 26 Sep 2003 06:30:59 -0700
| Lines: 12
| Message-ID: <20****************************@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Thread-Index: AcOEMmvqB0Mbm2ocQS66yGg4H3ryJg==
| Newsgroups: microsoft.public.dotnet.languages.csharp
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:187538| NNTP-Posting-Host: TK2MSFTNGXA09 10.40.1.161
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| Does anyone know what API I need to include to be able to| use the SQLDriverConnect function with C#? I was given a| code example on how to setup my DSN-less connection and I| keep getting a pop-up dialog box to configure my
| connection. I want to use the SQLDriverConnect function| so that I can utilize the SQL_DRIVER_NOPROMPT parameter.
|
| If anyone has any insight to this it would be greatly
| appreciated.
|
| Thanks,
| Dale
|

.

Nov 15 '05 #3

Hi Dale,

For System.Data.Odbc.OdbcConnection class, it encapsulats the ODBC
functions.
It will not prompt the dialog box for connection string, so you can use it.

Btw: for Sql Server version upper 7.0, it is recommended that use ".NET
Framework Data Provider for SQL Server",
it is optimized for Sql Server.

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| Content-Class: urn:content-classes:message
| From: "Dale Magnuson" <ma***********@mayo.edu>
| Sender: "Dale Magnuson" <ma***********@mayo.edu>
| References: <20****************************@phx.gbl>
<rN**************@cpmsftngxa06.phx.gbl>
| Subject: RE: C# - SQLDriverConnect
| Date: Mon, 29 Sep 2003 05:40:10 -0700
| Lines: 72
| Message-ID: <20****************************@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcOGhtJUWcvJN4MbTR+LQVNMTrRx8g==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.dotnet.languages.csharp
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:187968
| NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| The problem that I am having with
| System.Data.Odbc.OdbcConnection is that it doesn't seem to
| contain a SQL_DRIVER_NOPROMPT parameter anywhere. The
| SQLDriverConnect has an option for this parameter, but I
| cannot find one in the ODBC class.
|
| Any suggestions?
|
|
| >-----Original Message-----
| >
| >Hi Dale,
| >
| >Do you hard-coded your data source connection string into
| your application?
| >If so, in .Net I think you can use
| System.Data.Odbc.OdbcConnection class
| >instead.
| >Also, you can place your connection into the config file
| to add some
| >facility.
| >
| >Hope this helps,
| >Best regards,
| >Jeffrey Tan
| >Microsoft Online Partner Support
| >Get Secure! - www.microsoft.com/security
| >This posting is provided "as is" with no warranties and
| confers no rights.
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: "Dale Magnuson" <ma***********@mayo.edu>
| >| Sender: "Dale Magnuson" <ma***********@mayo.edu>
| >| Subject: C# - SQLDriverConnect
| >| Date: Fri, 26 Sep 2003 06:30:59 -0700
| >| Lines: 12
| >| Message-ID: <20****************************@phx.gbl>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="iso-8859-1"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| >| Thread-Index: AcOEMmvqB0Mbm2ocQS66yGg4H3ryJg==
| >| Newsgroups: microsoft.public.dotnet.languages.csharp
| >| Path: cpmsftngxa06.phx.gbl
| >| Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.languages.csharp:187538
| >| NNTP-Posting-Host: TK2MSFTNGXA09 10.40.1.161
| >| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
| >|
| >| Does anyone know what API I need to include to be able
| to
| >| use the SQLDriverConnect function with C#? I was given
| a
| >| code example on how to setup my DSN-less connection and
| I
| >| keep getting a pop-up dialog box to configure my
| >| connection. I want to use the SQLDriverConnect
| function
| >| so that I can utilize the SQL_DRIVER_NOPROMPT parameter.
| >|
| >| If anyone has any insight to this it would be greatly
| >| appreciated.
| >|
| >| Thanks,
| >| Dale
| >|
| >
| >.
| >
|

Nov 15 '05 #4
Thank you very much for your response - this is good
news. I assume this means that there is something wrong
with my connection string because I keep getting the
dialog box. I am trying to use a driver to connect to a
Tandem NonStop SQL box and I am getting the dialog box
everytime. I haven't found a lot of resources for what
the connection string should look like.

For a workaround I wrote a function to build the DSN in
the registry on the fly - this seems to work fine, but I
don't know if it is the best solution or not.

Thanks again,
Dale

-----Original Message-----

Hi Dale,

For System.Data.Odbc.OdbcConnection class, it encapsulats the ODBCfunctions.
It will not prompt the dialog box for connection string, so you can use it.
Btw: for Sql Server version upper 7.0, it is recommended that use ".NETFramework Data Provider for SQL Server",
it is optimized for Sql Server.

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
--------------------
| Content-Class: urn:content-classes:message
| From: "Dale Magnuson" <ma***********@mayo.edu>
| Sender: "Dale Magnuson" <ma***********@mayo.edu>
| References: <20****************************@phx.gbl>
<rN**************@cpmsftngxa06.phx.gbl>
| Subject: RE: C# - SQLDriverConnect
| Date: Mon, 29 Sep 2003 05:40:10 -0700
| Lines: 72
| Message-ID: <20****************************@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcOGhtJUWcvJN4MbTR+LQVNMTrRx8g==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.dotnet.languages.csharp
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:187968| NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| The problem that I am having with
| System.Data.Odbc.OdbcConnection is that it doesn't seem to| contain a SQL_DRIVER_NOPROMPT parameter anywhere. The
| SQLDriverConnect has an option for this parameter, but I| cannot find one in the ODBC class.
|
| Any suggestions?
|
|
| >-----Original Message-----
| >
| >Hi Dale,
| >
| >Do you hard-coded your data source connection string into| your application?
| >If so, in .Net I think you can use
| System.Data.Odbc.OdbcConnection class
| >instead.
| >Also, you can place your connection into the config file| to add some
| >facility.
| >
| >Hope this helps,
| >Best regards,
| >Jeffrey Tan
| >Microsoft Online Partner Support
| >Get Secure! - www.microsoft.com/security
| >This posting is provided "as is" with no warranties and| confers no rights.
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: "Dale Magnuson" <ma***********@mayo.edu>
| >| Sender: "Dale Magnuson" <ma***********@mayo.edu>
| >| Subject: C# - SQLDriverConnect
| >| Date: Fri, 26 Sep 2003 06:30:59 -0700
| >| Lines: 12
| >| Message-ID: <20****************************@phx.gbl>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="iso-8859-1"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4910.0300| >| Thread-Index: AcOEMmvqB0Mbm2ocQS66yGg4H3ryJg==
| >| Newsgroups: microsoft.public.dotnet.languages.csharp
| >| Path: cpmsftngxa06.phx.gbl
| >| Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.languages.csharp:187538
| >| NNTP-Posting-Host: TK2MSFTNGXA09 10.40.1.161
| >| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
| >|
| >| Does anyone know what API I need to include to be able| to
| >| use the SQLDriverConnect function with C#? I was given| a
| >| code example on how to setup my DSN-less connection and| I
| >| keep getting a pop-up dialog box to configure my
| >| connection. I want to use the SQLDriverConnect
| function
| >| so that I can utilize the SQL_DRIVER_NOPROMPT parameter.| >|
| >| If anyone has any insight to this it would be greatly| >| appreciated.
| >|
| >| Thanks,
| >| Dale
| >|
| >
| >.
| >
|

.

Nov 15 '05 #5

Hi Dale,

Just as I original said, the suggested .NET Framework Data Provider for SQL
Server uses its own protocol to communicate with SQL Server. It does not
support the use of an ODBC data source name (DSN) when connecting to SQL
Server because it does not add an ODBC layer.

For System.Data.Odbc, if you do not use the DNS, you can specify the user
id and password in connection string, for more details, please refer to the
link below:
http://msdn.microsoft.com/library/de...us/cpref/html/
frlrfSystemDataOdbcOdbcConnectionClassConnectionSt ringTopic.asp

Btw: The .NET Framework Data Provider for ODBC is not included in the .NET
Framework version 1.0. If you require the .NET Framework Data Provider for
ODBC and are using the .NET Framework version 1.0, you can download the
.NET Framework Data Provider for ODBC at
http://msdn.microsoft.com/downloads. The namespace for the downloaded .NET
Framework Data Provider for ODBC is Microsoft.Data.Odbc.

Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
| Content-Class: urn:content-classes:message
| From: "Dale Magnuson" <ma***********@mayo.edu>
| Sender: "Dale Magnuson" <ma***********@mayo.edu>
| References: <20****************************@phx.gbl>
<rN**************@cpmsftngxa06.phx.gbl>
<20****************************@phx.gbl>
<R8**************@cpmsftngxa06.phx.gbl>
| Subject: RE: C# - SQLDriverConnect
| Date: Tue, 30 Sep 2003 06:12:41 -0700
| Lines: 149
| Message-ID: <1c****************************@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcOHVIduMaArTtkKT7urNfAfpXwUwQ==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.dotnet.languages.csharp
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:188191
| NNTP-Posting-Host: TK2MSFTNGXA09 10.40.1.161
| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
|
| Thank you very much for your response - this is good
| news. I assume this means that there is something wrong
| with my connection string because I keep getting the
| dialog box. I am trying to use a driver to connect to a
| Tandem NonStop SQL box and I am getting the dialog box
| everytime. I haven't found a lot of resources for what
| the connection string should look like.
|
| For a workaround I wrote a function to build the DSN in
| the registry on the fly - this seems to work fine, but I
| don't know if it is the best solution or not.
|
| Thanks again,
| Dale
|
|
| >-----Original Message-----
| >
| >Hi Dale,
| >
| >For System.Data.Odbc.OdbcConnection class, it encapsulats
| the ODBC
| >functions.
| >It will not prompt the dialog box for connection string,
| so you can use it.
| >
| >Btw: for Sql Server version upper 7.0, it is recommended
| that use ".NET
| >Framework Data Provider for SQL Server",
| >it is optimized for Sql Server.
| >
| >Best regards,
| >Jeffrey Tan
| >Microsoft Online Partner Support
| >Get Secure! - www.microsoft.com/security
| >This posting is provided "as is" with no warranties and
| confers no rights.
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: "Dale Magnuson" <ma***********@mayo.edu>
| >| Sender: "Dale Magnuson" <ma***********@mayo.edu>
| >| References: <20****************************@phx.gbl>
| ><rN**************@cpmsftngxa06.phx.gbl>
| >| Subject: RE: C# - SQLDriverConnect
| >| Date: Mon, 29 Sep 2003 05:40:10 -0700
| >| Lines: 72
| >| Message-ID: <20****************************@phx.gbl>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="iso-8859-1"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| Thread-Index: AcOGhtJUWcvJN4MbTR+LQVNMTrRx8g==
| >| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| >| Newsgroups: microsoft.public.dotnet.languages.csharp
| >| Path: cpmsftngxa06.phx.gbl
| >| Xref: cpmsftngxa06.phx.gbl
| microsoft.public.dotnet.languages.csharp:187968
| >| NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
| >| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
| >|
| >| The problem that I am having with
| >| System.Data.Odbc.OdbcConnection is that it doesn't seem
| to
| >| contain a SQL_DRIVER_NOPROMPT parameter anywhere. The
| >| SQLDriverConnect has an option for this parameter, but
| I
| >| cannot find one in the ODBC class.
| >|
| >| Any suggestions?
| >|
| >|
| >| >-----Original Message-----
| >| >
| >| >Hi Dale,
| >| >
| >| >Do you hard-coded your data source connection string
| into
| >| your application?
| >| >If so, in .Net I think you can use
| >| System.Data.Odbc.OdbcConnection class
| >| >instead.
| >| >Also, you can place your connection into the config
| file
| >| to add some
| >| >facility.
| >| >
| >| >Hope this helps,
| >| >Best regards,
| >| >Jeffrey Tan
| >| >Microsoft Online Partner Support
| >| >Get Secure! - www.microsoft.com/security
| >| >This posting is provided "as is" with no warranties
| and
| >| confers no rights.
| >| >
| >| >--------------------
| >| >| Content-Class: urn:content-classes:message
| >| >| From: "Dale Magnuson" <ma***********@mayo.edu>
| >| >| Sender: "Dale Magnuson" <ma***********@mayo.edu>
| >| >| Subject: C# - SQLDriverConnect
| >| >| Date: Fri, 26 Sep 2003 06:30:59 -0700
| >| >| Lines: 12
| >| >| Message-ID: <20****************************@phx.gbl>
| >| >| MIME-Version: 1.0
| >| >| Content-Type: text/plain;
| >| >| charset="iso-8859-1"
| >| >| Content-Transfer-Encoding: 7bit
| >| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| >| X-MIMEOLE: Produced By Microsoft MimeOLE
| V5.50.4910.0300
| >| >| Thread-Index: AcOEMmvqB0Mbm2ocQS66yGg4H3ryJg==
| >| >| Newsgroups: microsoft.public.dotnet.languages.csharp
| >| >| Path: cpmsftngxa06.phx.gbl
| >| >| Xref: cpmsftngxa06.phx.gbl
| >| microsoft.public.dotnet.languages.csharp:187538
| >| >| NNTP-Posting-Host: TK2MSFTNGXA09 10.40.1.161
| >| >| X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
| >| >|
| >| >| Does anyone know what API I need to include to be
| able
| >| to
| >| >| use the SQLDriverConnect function with C#? I was
| given
| >| a
| >| >| code example on how to setup my DSN-less connection
| and
| >| I
| >| >| keep getting a pop-up dialog box to configure my
| >| >| connection. I want to use the SQLDriverConnect
| >| function
| >| >| so that I can utilize the SQL_DRIVER_NOPROMPT
| parameter.
| >| >|
| >| >| If anyone has any insight to this it would be
| greatly
| >| >| appreciated.
| >| >|
| >| >| Thanks,
| >| >| Dale
| >| >|
| >| >
| >| >.
| >| >
| >|
| >
| >.
| >
|

Nov 15 '05 #6

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

Similar topics

2
3475
by: Tom Koenning | last post by:
I have been trying to solve a web login problem for a few weeks. There are two interfaces to the Oracle 8i database--client-server and web. The client-server interface has continued to function...
4
7875
by: Kong Li | last post by:
Environments: 1. WinXP SP1, MDAC 2.7 SP1 (Microsoft ODBC for Oracle is 2.573.9030.0), Oracle client 9.2.0.1. 2. Win2000 SP4, MDAC 2.7 SP1 (Microsoft ODBC for Oracle is 2.573.9030.0), Oracle...
0
1141
by: Bill Davidson | last post by:
Hello Folks: I am looking for some sample parameters that need to be passed into SQLDriverConnect that would enable my C application connect to the embedded MySQL server. I would appreciate if...
6
3355
by: Anil Kumar Saharan | last post by:
Hi, I have a loopback connection using ODBC in the DLL initialization code of the SQL Server ESP Module (SQL Server 2000). The loopback connection works fine when the DSN is specifed with the...
4
4025
by: Sean C. | last post by:
Helpful folks, I've just migrated our test server from V7.2 -FP11 to V8.1.3, on WinNT 4.0. Everything went pretty darn smoothly, however I get the following errors when using the Control Center:...
4
3732
by: Henry C. Wu | last post by:
Hi I was wondering how can I program a button to make the ODBC dialog box appear or prompt the user. And once the user has selected his/her choice the connection string will be saved at a variable....
5
3543
by: mjf | last post by:
I'd like to connect from any Linux machine to the DB2 on a Linux server via an IP adddress (or any available method that allows us to connect to DB2 from another machine). I know we can do it in...
14
11622
by: Khan | last post by:
Hello, I want to connect my intranet server (with php/apache) to the other informix database server, But I didnt it. I dont know how i can do it? Can i use php_informix extensions for example...
0
968
by: leejwen | last post by:
Hello Guys, I'm programming a DLL based on c/c++ of WINDOWS. when DLL_PROCESS_ATTACH, the programm will connect a Excel database by SQLDriverConnect. Is that feasible? my dll seems stopping in...
0
7098
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...
0
7303
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,...
1
7018
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...
0
7471
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...
0
4699
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...
0
3187
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...
0
1528
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 ...
1
754
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
407
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...

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.