[ mmilinca @ 01.12.2005. 07:18 ] @
Kako izgleda string za konekciju na access bazu u vb.net windows aplikaciji, odnosno da li je moguce konektovati se sa drugog racunara preko te aplikacije na access bazu. Kao u primeru: Code: Using VB.NET: Imports System.Data.SqlClient ... Dim oSQLConn As SqlConnection = New SqlConnection() oSQLConn.ConnectionString = "Data Source=(local);" & _ "Initial Catalog=mySQLServerDBName;" & _ "Integrated Security=SSPI" oSQLConn.Open() If connection to a remote server (via IP address): oSQLConn.ConnectionString = "Network Library=DBMSSOCN;" & _ "Data Source=xxx.xxx.xxx.xxx,1433;" & _ "Initial Catalog=mySQLServerDBName;" & _ "User ID=myUsername;" & _ "Password=myPassword" Where: - "Network Library=DBMSSOCN" tells SqlConnection to use TCP/IP Q238949 - xxx.xxx.xxx.xxx is an IP address. - 1433 is the default port number for SQL Server. Q269882 and Q287932 - You can also add "Encrypt=yes" for encryption OLE DB .NET Data Provider (System.Data.OleDb) The OLE DB .NET Data Provider uses native OLE DB through COM interop to enable data access. To use the OLE DB .NET Data Provider, you must also use an OLE DB provider (e.g. SQLOLEDB, MSDAORA, or Microsoft.JET.OLEDB.4.0). Please help! [Ovu poruku je menjao mmilinca dana 01.12.2005. u 11:18 GMT+1] [Ovu poruku je menjao mmilinca dana 01.12.2005. u 11:19 GMT+1] |