Quantcast
Channel: SQL Server Compact Forum
Viewing all 193 articles
Browse latest View live
↧

using sql server compact edition in rdl report

$
0
0

Hi
I want to create an rdl-report where sql server 3.5 database stands as a data source (I'm using BIDS 2008). But I can't see the sql ce 3.5 provider in the provider list. Nothing concrete about this problem was found in the internet.

Is any solution available for this problem?

↧

How to handle null value from SqlCe

$
0
0

I have a table which contains many fields; there are 2 fields of string type GpsLat and GpsLon.

I am not sure how to handle the null type in SqlCe Database.

after a select-statement using LinQToSQL , I use foreach to handle the items.

I have these questions:

1) If no data enter for fields GpsLat and GpsLon. 
    What will be the value? Null or empty ?  can  I use  string strGpsLat = c.GpsLat?

2) If no data enter for fields GpsLat and GpsLon, What will happen in CalculateDistance() ?
    can Convert.ToDouble() handle null and empty ?

 Thanks.

foreach (var c in Cat)
    {
                          
       double KM = CalculateDistance(g_strFromLat, g_strFromLon, c.GpsLat, c.GpsLon);

                             
 }

 private double CalculateDistance(string StartLat1, string StartLon1, string Lat2, string Lon2)
       {

         GeoCoordinate start = new GeoCoordinate(Convert.ToDouble(StartLat1), Convert.ToDouble(StartLon1));
           GeoCoordinate end = new GeoCoordinate(Convert.ToDouble(Lat2), Convert.ToDouble(Lon2));

           double distance = start.GetDistanceTo(end);        
           double DistanceInKM = Math.Round((distance * 0.001), 2);      

           return DistanceInKM;        

       }

↧
↧

Change Collation

$
0
0

I need to perform a case sensitive query using my SQL Server Compact v4 database.

Since the column in question should always be treated in a case sensitive fashion I want to change the collation on it permanently. I have tried this:

ALTER TABLE Units
ALTER COLUMN UnitString NVARCHAR(20) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL

But I get am error parsing the query.

  • Is it possible to change the collation of a single column in SQL Server Compact v4.0?
  • If not, is it possible to change the collation of the entire database?
  • If neither of those options are possible - what can I do? I'd rather not handle this on the client-side.

TIA

↧

problems in upload when using microsoft sync framework 2.1

$
0
0

I am using sql server compact 3.5 in client machines and micrsoft sync framework 2.1 to upload the changes in the client table to an sqlexpress 2008 table. I am using the upload only sync for that table. The table has primery key.

Some times it work correctly and gives correct numbers for total records uploaded and total records fails. But some times it upload correctly and give 0 fro total records uploaded and some numbers for total records failed. Some times it stop uploading. I used conflict resolver for clientupdateserverupdate and clientupdateserverdelet and it resolves those kind of conflicts. Is it because i am using sqlexpress in the server side?

↧

Problems with SqlCeDataAdapter and unique nullable columns

$
0
0

Hi,

calling Update on an SqlCeDataAdapter causes problems if the table contains a unique nullable column. The problem occurs because SqlCeParameter discards changes to its SourceColumnNullMapping property which is set by DbCommandBuilder. This leads to wrong behavior within the DbDataAdapter which can cause various exceptions depending on the column type (for example a format exception when the column is of a string type and the row to commit has a value for this cell which can't be converted to Int32). For details on this property, why it is needed and how it affects the SQL statement see this MSDN article.

Why doesn't the SqlCeParameter allow setting its SourceColumnNullMapping? Is this a bug? There seems to be no workaround without changing the data model.

I'm really looking forward to any answers!

↧
↧

C# ,RDA.push clear old data at SQL server

$
0
0

Hi All,

On my PDA application RDA.push sends current rows to sql server 2005 , but the issue is the old rows allready exists on the sql server table at the PC side is deleted .

I don't know if this is the default of push command ? 

i'm using  SQLServerCE3.5 on PDA, SQL server 2005 and SQLserverCE angine 2.0 on PC.

Advise please.

Thanks

Hanadi


↧

Disallow a duplicate entry across two columns in a SQL CE database

$
0
0

Hi,

I have 4 columns in a table (rates) of my db  viz. SrKey (int), ItemID (int) {Related with another table}, DateValidFrom (datetime), Rate(double)

I want to disallow the user from adding a new rate for a particular item on the same date.

for eg. if there is a rate say $20 for ItemID 12, valid from 09/26/2012, I want to disallow a user from entering another rate valid from 09/26/2012 for the ItemID 12. but he can enter a new rate for another item (provided he hasn't entered a rate for that item on the same date)

I am using SQL CE 4. VB 2010 express

Please help


WinLight Learning the "Basic"s

↧

Cannot load SqlCe components at runtime

$
0
0

Hi all,

I 'm writing a small Windows Application use SqlCe 3.5 as a Database.

The Application works fine as long as all DLL of SqlCe locate in the same directory (of my application file).

An now, I want to deploy my application just only one EXE file and i put all SqlCe DLL in EmbeddedResource of my project and load these DLL at runtime by using AssemblyResolve Event from Application Object.

Result:

My Application could not operate with Database.

Exception:

Unable to load the native components of SQL Server Compact corresponding to the ADO.NET provider of version 8080. Install the correct version of SQL Server Compact. Refer to KB article 974247 for more details.

Note:

As soon as i copy all DLL (The same DLL as in EmbeddedResource) in to the Directory of my application, everything work fine again.

I also use the same method to load another assembly at runtime and i get no problem.

Question:

Can anyone help me? What did i do wrong?

S. Promma


↧

Strange behaviour when opening a DB created created on PC on Windows CE 5.0

$
0
0

Hi to all,

I have a script that translates a MySQL DB to SQL Compact 3.5 with SSMA and ErikEj tools. Basically the MySQL DB is first converted to an SQL Server 2005 or 2008 DB with SQL Server Migration Assistant then the SQL Sever DB is converted to SQL Compact 3.5 withe ErikEj tools. That part works fine.

The goal of all this is to have a copy of the MySQL DB that can be used on a Windows CE 5.0 smart device.

I ran across the re-indexing problem on the first opening on WCE but behaviour is inconsistent. Sometimes the SDF is processed correctly, sometimes it crashes on the first query, sometimes it can't be opened (parameter error or alike). The re-indexing in itself is not a problem as the DB is small, it doesn't take too long (but if it can be skipped...), but the fact that the DB cannot be opened or queried is.

I must add that I regularly update the SDF on the smart device (close the connection, replace the file, re-open it) and this is when the problems occurs. I can see that doing that too fast results in the DB not being re-indexed (size doesn't change), while waiting before re-opening is not very reliable.

Is there a way to be sure that the DB can be opened and queried ?

Thanks.


↧
↧

CE 4.0 delay when CoCreateInstance on PC without internet

$
0
0

Hi,

When I load the sqlceoledb40.dll on a machine without internet connectivity (using CoCreateInstance) there is a 10s delay while the system tries to check the Certificate Revocation List.

The only way around this I have found is to call WintrustSetRegPolicyFlags to set the global WTPF_IGNOREREVOKATION flag. However I do not really want to change a global setting.

SQL CE 3.5 does not have the delay. have tried 4.0sp1 and it is the same.

Is this a bug with 4.0? Is there a cleaner way around this problem?

Sample C++ code below.

Thanks - Phil

IDBInitialize* pIDBInitialize = NULL;

    HRESULT hr = E_FAIL;

    // Create an instance of the OLE DB Provider
    hr = CoCreateInstance(CLSID_SQLSERVERCE4_0,
                          0,
                          CLSCTX_INPROC_SERVER,
                          IID_IDBInitialize,
                          (LPVOID*)&pIDBInitialize);

↧

What is the procedure for deploying a SQL Server Compact 4.0 Local Database to a Server

$
0
0

Hello, I created a simple MVC 4 web site using Visual Studio 2012 rtm.

The site uses a SQL Server Compact 4.0 Local Database created in the App-Data directory.

Everything is just standard stuff, I have done nothing fancy whatsoever.

All works fine on my machine but I am unable to deploy the database to our server.

I have searched everywhere for help but, amazingly, noone seems to know.

I imagine there must be a standard routine for deploying this database so my question is :

How is it done?

Thanking you in anticipation.

↧

Need to get column name from table

$
0
0

Hi

I have a table Employee with two columns EMPID and EMPNAME.

This table exists in a database which contains only this table.

I have two querries:

1)I need a querry to get the column names of this table with data types.

2)What is the command to delete one table in SQL ce.

Regards


Umesh

↧

using Push command to send records from smart device sqlce to PC SQL server 2005 table overwrites existing records

$
0
0

Hi All,

In a smart devide application developed with c# i'm trying to use rda.push command to send records from the device to the PC .

Now if there is any existing records at SQL server table at PC side it will be erased and only new record are there after perform push command.

Note :pull is performed before push then delete record from the table on the device 


HSH

↧
↧

Compatibility issue: SQL CE 5692 versus 8154

$
0
0

I am using SQL server compact edition 3.5 (version 3.5.8154) OLE deployed through Windows Embedded Compact 7 platform builder. My Execute command is failing. Note, this statement works fine on Windows CE6 with SQL 3.5 version 3.5.5692.

At this line of c++ code:

m_hrLastError = pCommandText->Execute(NULL,    IID_IRowset, NULL, NULL, (IUnknown **)&pIRowset);

Execute failed:

SQL Statement: [select table_name, column_name, data_type, character_maximum_length from information_schema.columns]

OLE DB Error:

HRESULT: 80040e37,

Minor Code: 0,

Source: Microsoft SQL Server Compact OLE DB Provider,

Description: The specified table does not exist. [,,,,,]

How do I resolve this issue?

Thanks,

Chris

↧

System.Data.SqlServerCeException.ToString Throwing a null reference exception.

$
0
0

I have an Add-In to Microsoft Project 2010 that uses Microsoft SQL CE 3.5 SP2.  The Add-In is built using the .net framework 4.0 and VSTO 2010.  I have a customer who is using the Add-In and is getting the following exception and stack trace:

ExceptionType: System.NullReferenceException Stack Trace:    at System.Data.SqlServerCe.SqlCeException.ToString()
   at System.String.Concat(Object arg0, Object arg1)
   at DataModel.Persistence.Db.CreateDatabase()

The null reference exception seems to occur when ToString() is called on the exception itself.

'DataModel' in this case is my code. The code for 'CreateDatabase' and the relevant using statements can be seen below. I am not able to reproduce this on my dev environment and so far as I know only one customer has experienced this issue. Additionally I have checked that they are running the appropriate version of SQL Server CE.

My question is:

 Has anyone experienced behavior like this?  Are there any suggestions on how to reproduce, diagnose, or fix?

 

using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlServerCe;
using System.Diagnostics;
using System.IO;
using System.Windows.Forms;
using Exception = System.Exception;
using System.Collections.ObjectModel;
using MentorUtils;
using System.Data.SqlClient;
using InterfacesLibrary;
using MsProjectTypeExtensions;
using System.Reflection;



private static void CreateDatabase() 
{
    try 
    {
   
       SqlCeEngine engine = new SqlCeEngine(ConnString);
       engine.CreateDatabase();
    }
    catch(Exception e) 
    {
        MessageBox.Show("Unable to create database: " + e);
    }
}




 

↧

help on sql 2005 installation

$
0
0

Microsoft SQL Server 2005 9.00.1399.06 
============================== 
OS Version      : Professional Service Pack 1 (Build 7601) 
Time            : Thu Oct 04 16:11:53 2012 
 
USER-HP : The current system does not meet the minimum hardware requirements for this SQL Server release. For system requirements, see Hardware and Software Requirements, in the readme file or in SQL Server Books Online.
USER-HP : Microsoft Internet Information Services (IIS) is either not installed or is disabled. IIS is required by some SQL Server features.  Without IIS, some SQL Server features will not be available for installation. To install all SQL Server features, install IIS from Add or Remove Programs in Control Panel or enable the IIS service through the Control Panel if it is already installed, and then run SQL Server Setup again. For a list of features that depend on IIS, see Features Supported by Editions of SQL Server in Books Online.
Machine         : USER-HP 
Product         : Microsoft SQL Server Setup Support Files (English) 
Product Version : 9.00.1399.06 
Install         : Successful 
Log File        : C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_SQLSupport_1.log 
-------------------------------------------------------------------------------- 
Machine         : USER-HP 
Product         : Microsoft SQL Server Native Client 
Product Version : 9.00.1399.06 
Install         : Successful 
Log File        : C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_SQLNCLI_1.log 
-------------------------------------------------------------------------------- 
Machine         : USER-HP 
Product         : Microsoft Office 2003 Web Components 
Product Version : 11.0.6558.0 
Install         : Successful 
Log File        : C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_OWC11_1.log 
-------------------------------------------------------------------------------- 
Machine         : USER-HP 
Product         : Microsoft SQL Server 2005 Books Online (English) 
Product Version : 9.00.1399.06 
Install         : Successful 
Log File        : C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_BOL_1.log 
-------------------------------------------------------------------------------- 
Machine         : USER-HP 
Product         : Microsoft SQL Server 2005 Backward compatibility 
Product Version : 8.05.1054 
Install         : Successful 
Log File        : C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_BackwardsCompat_1.log 
-------------------------------------------------------------------------------- 
Machine         : USER-HP 
Product         : SQLXML4 
Product Version : 9.00.1399.06 
Install         : Successful 
Log File        : C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_SQLXML4_1.log 
-------------------------------------------------------------------------------- 
Machine         : USER-HP
Product         : Workstation Components, Books Online and Development Tools
Error           : There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.  
--------------------------------------------------------------------------------
Machine         : USER-HP 
Product         : Microsoft SQL Server 2005 Tools 
Product Version : 9.00.1399.06 
Install         : Failed 
Log File        : C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_Tools.log 
Error Number    : 1603 
-------------------------------------------------------------------------------- 

 SQL Server Setup failed. For more information, review the Setup log file in %ProgramFiles%\Microsoft SQL Server\90\Setup Bootstrap\LOG\Summary.txt. 


Time            : Thu Oct 04 16:14:41 2012


List of log files:
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_Core(Local).log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_SQLSupport_1.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_SQLNCLI_1.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_OWC11_1.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_BOL_1.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_BackwardsCompat_1.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_SQLXML4_1.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_Tools.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_Datastore.xml
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_.NET Framework 2.0.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_Core.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Summary.txt
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_.NET Framework 2.0 LangPack.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_.NET Framework Upgrade Advisor.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_.NET Framework Upgrade Advisor LangPack.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_.NET Framework Windows Installer.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_.NET Framework Windows Installer LangPack.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_Support.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_SCC.log
C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup0014_USER-HP_WI.log
↧

How to flush changes to disk by manually for SQL CE 4

$
0
0

I meet some cases that, some changes data in memory not flushed to disk, when use SQL CE 4.0.

So my question is how to flush changes to disk by manually for SQL CE 4?


Felix

↧
↧

SQLCompact 4.o support transaction and with CTE function for SQL ?

$
0
0

Hello

SQLCompact 4.o support transaction and 'with CTE' function for SQL Select ?

There r 86 and 64 version. if i use 64 version for my project(i use 64 pc windows7), will my project work at 86 computers too when i copy my project to other computers ?

↧

Data provider is missing in VS Express 2012 for Web

$
0
0

Hello all,

I can't create connection to database in VS Express 2012. There is no SQL Compact data provider:

But in VS Express 2012 for Windows Desktop I have that provider:

What goes wrong? I've try to reinstall Microsoft Visual Studio 2012 Tools for SQL Server Compact 4.0 SP1 ENU and again it doesn't work.

Any ideas?

Thanks a lot,
Sergey

↧

i m having problem in installing a software. it says :Setup has detected that the file 'C:\Users\AppData\Local\Temp\VSD66DE.tmp\SQL Server Compact Edition\SSCERuntime-ENU.msi' has changed since it was initially published

$
0
0

the log is:

The following properties have been set:
Property: [AdminUser] = true {boolean}
Property: [InstallMode] = SpecificSite {string}
Property: [ProcessorArchitecture] = Intel {string}
Property: [VersionNT] = 6.1.1 {version}
Running checks for package 'Windows Installer 3.1', phase BuildList
The following properties have been set for package 'Windows Installer 3.1':
Running checks for command 'WindowsInstaller3_1\WindowsInstaller-KB893803-v2-x86.exe'
Result of running operator 'VersionGreaterThanOrEqualTo' on property 'VersionMsi' and value '3.1': true
Result of checks for command 'WindowsInstaller3_1\WindowsInstaller-KB893803-v2-x86.exe' is 'Bypass'
'Windows Installer 3.1' RunCheck result: No Install Needed
Running checks for package 'Microsoft .NET Framework 4 (x86 and x64)', phase BuildList
Reading value 'Version' of registry key 'HKLM\Software\Microsoft\NET Framework Setup\NDP\v4\Full'
Read string value '4.0.30319'
Setting value '4.0.30319 {string}' for property 'DotNet40Full_TargetVersion'
The following properties have been set for package 'Microsoft .NET Framework 4 (x86 and x64)':
Property: [DotNet40Full_TargetVersion] = 4.0.30319 {string}
Running checks for command 'DotNetFX40\dotNetFx40_Full_x86_x64.exe'
Result of running operator 'ValueEqualTo' on property 'InstallMode' and value 'HomeSite': false
Result of running operator 'VersionGreaterThanOrEqualTo' on property 'DotNet40Full_TargetVersion' and value '4.0.30129': true
Result of checks for command 'DotNetFX40\dotNetFx40_Full_x86_x64.exe' is 'Bypass'
Running checks for command 'DotNetFX40\dotNetFx40_Full_setup.exe'
Result of running operator 'ValueNotEqualTo' on property 'InstallMode' and value 'HomeSite': true
Result of checks for command 'DotNetFX40\dotNetFx40_Full_setup.exe' is 'Bypass'
'Microsoft .NET Framework 4 (x86 and x64)' RunCheck result: No Install Needed
Running checks for package 'SQL Server Compact 3.5 SP2', phase BuildList
Reading value 'DesktopRuntimeVersion' of registry key 'HKLM\SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\ENU'
Unable to read registry value
Not setting value for property 'ENU_INST'
Reading value 'System.Data.SqlServerCe.dll_ENU_x86' of registry key 'HKLM\SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\GAC'
Unable to read registry value
Not setting value for property 'ENU_INST_GAC'
Reading value 'DesktopRuntimeVersion_x64' of registry key 'HKLM\SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\ENU'
Unable to read registry value
Not setting value for property 'ENU_INST_64'
Reading value 'System.Data.SqlServerCe.dll_ENU_x64' of registry key 'HKLM\SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\GAC'
Unable to read registry value
Not setting value for property 'ENU_INST_GAC_64'
The following properties have been set for package 'SQL Server Compact 3.5 SP2':
Running checks for command 'SQL Server Compact Edition\SSCERuntime-ENU.msi'
Skipping ByPassIf because Property 'ENU_INST' was not defined
Result of running operator 'ValueEqualTo' on property 'AdminUser' and value 'false': false
Result of checks for command 'SQL Server Compact Edition\SSCERuntime-ENU.msi' is 'Install'
Running checks for command 'SQL Server Compact Edition\SSCERuntime-ENU.msi'
Skipping ByPassIf because Property 'ENU_INST' was not defined
Result of running operator 'ValueExists' on property 'ENU_INST_GAC': false
Result of running operator 'ValueEqualTo' on property 'AdminUser' and value 'false': false
Result of checks for command 'SQL Server Compact Edition\SSCERuntime-ENU.msi' is 'Install'
Running checks for command 'SQL Server Compact Edition\SSCERuntime-ENU-x64.msi'
Result of running operator 'ValueNotEqualTo' on property 'ProcessorArchitecture' and value 'AMD64': true
Result of checks for command 'SQL Server Compact Edition\SSCERuntime-ENU-x64.msi' is 'Bypass'
Running checks for command 'SQL Server Compact Edition\SSCERuntime-ENU-x64.msi'
Result of running operator 'ValueNotEqualTo' on property 'ProcessorArchitecture' and value 'AMD64': true
Result of checks for command 'SQL Server Compact Edition\SSCERuntime-ENU-x64.msi' is 'Bypass'
'SQL Server Compact 3.5 SP2' RunCheck result: Install Needed
EULA for components 'SQL Server Compact 3.5 SP2' was accepted.
Copying files to temporary directory "C:\Users\mudassir\AppData\Local\Temp\VSD6A37.tmp\"
Downloading files to "C:\Users\mudassir\AppData\Local\Temp\VSD6A37.tmp\"
(12-10-2012 22:19:52) Downloading 'SQL Server Compact Edition\SSCERuntime-ENU.msi' from 'http://www.quranexplorer.com/qurandesktop/downloads/prerequisite/SQL Server Compact Edition/SSCERuntime-ENU.msi' to 'C:\Users\mudassir\AppData\Local\Temp\VSD6A37.tmp\'
Download completed at 12-10-2012 22:19:53
Verifying file integrity of C:\Users\mudassir\AppData\Local\Temp\VSD6A37.tmp\SQL Server Compact Edition\SSCERuntime-ENU.msi
WinVerifyTrust returned -2146762749
Subject form unknown
Running checks for package 'SQL Server Compact 3.5 SP2', phase BeforePackage
Reading value 'DesktopRuntimeVersion' of registry key 'HKLM\SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\ENU'
Unable to read registry value
Not setting value for property 'ENU_INST'
Reading value 'System.Data.SqlServerCe.dll_ENU_x86' of registry key 'HKLM\SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\GAC'
Unable to read registry value
Not setting value for property 'ENU_INST_GAC'
Reading value 'DesktopRuntimeVersion_x64' of registry key 'HKLM\SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\ENU'
Unable to read registry value
Not setting value for property 'ENU_INST_64'
Reading value 'System.Data.SqlServerCe.dll_ENU_x64' of registry key 'HKLM\SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\GAC'
Unable to read registry value
Not setting value for property 'ENU_INST_GAC_64'
The following properties have been set for package 'SQL Server Compact 3.5 SP2':
Running checks for command 'SQL Server Compact Edition\SSCERuntime-ENU.msi'
Skipping ByPassIf because Property 'ENU_INST' was not defined
Result of running operator 'ValueEqualTo' on property 'AdminUser' and value 'false': false
Result of checks for command 'SQL Server Compact Edition\SSCERuntime-ENU.msi' is 'Install'
Running checks for command 'SQL Server Compact Edition\SSCERuntime-ENU.msi'
Skipping ByPassIf because Property 'ENU_INST' was not defined
Result of running operator 'ValueExists' on property 'ENU_INST_GAC': false
Result of running operator 'ValueEqualTo' on property 'AdminUser' and value 'false': false
Result of checks for command 'SQL Server Compact Edition\SSCERuntime-ENU.msi' is 'Install'
'SQL Server Compact 3.5 SP2' RunCheck result: Install Needed
Verifying file integrity of C:\Users\mudassir\AppData\Local\Temp\VSD6A37.tmp\SQL Server Compact Edition\SSCERuntime-ENU.msi
WinVerifyTrust returned -2146762749
Subject form unknown
Error: Setup has detected that the file 'C:\Users\mudassir\AppData\Local\Temp\VSD6A37.tmp\SQL Server Compact Edition\SSCERuntime-ENU.msi' has changed since it was initially published.

plz help me immediately.

↧
Viewing all 193 articles
Browse latest View live