The sql-server-ce-3.5 tag has no wiki summary.
0
votes
2answers
17 views
SQL Server CE - Unable to insert values in the BIT column
I have created a small table in SQL Server CE 3.5
Following is the table description:
ROW_ID NVARCHAR(30),
NAME NVARCHAR(30),
TEST BIT
I am using following query to insert record in the table:
...
0
votes
1answer
18 views
Problems faced in keeping SQL Compact Edition Database on another machine in same network
I am using SQL CE 3.5 for one of my project, the front end is WPF application which process the given files and dumps the data to SQL CE database.
Presently application and DB is on same machine.
...
0
votes
1answer
60 views
Linq Query returns 0 results, but should return 1
I have a SQL Server Compact Edition version 3.5 for a winforms app that is used as to store order information, but I have had a complaint from someone who is having issues where the detail isn't ...
0
votes
1answer
115 views
VB.net sql table not showing last rows
What I am doing-
Importing 406 rows into 5 sql tables from excel sheet.
After import, I am manually saving data one by one into each of the 5
tables on button click event and displaying on ...
0
votes
1answer
20 views
How do I show “NEXT” x items to the user? [duplicate]
I am learning MVC. I'm creating a simple website for demo, which stores products in Database and shows them to the user 10 per page. Now, how do I fetch "NEXT" 10/20 items from the database? I thought ...
0
votes
1answer
19 views
SQL Server CE 3.5 to SQL Server Migration
I am rather new to SQL Server and SQL Server CE. I have an application which was developed with SQL Server CE 3.5. The application uses SQLCe* api and hand written SQL statements, so no ORM layer was ...
0
votes
3answers
95 views
SQL limit error
I use this code in my project (SQL COMPACT):
"select Name
from Drug
where Name
like '" + Dname + "%'
limit 10"
Dname is a string value. The result is this error:
There was an error parsing ...
3
votes
4answers
334 views
Delete all data from all tables
Is there an elegant way to wipe all data in the database (removing every row from every table) without destroying the architecture and having to remove/read constraints?
I could just delete data ...
0
votes
1answer
215 views
Data Backup & Restore of SQL Server Compact 3.5 SP2 Edition?
Is data backup and restore functionality possible in SQL Server Compact 3.5 SP2 edition ?
I have developed and installed a C# desktop application which is working perfectly. My app can store and ...
0
votes
1answer
207 views
Binding Issue WPToolkit ListPicker with SQL Server CE 3.5 DataContext Class Windows Phone 7.5
Well, well, this is my very first question in StackOverflow! I've been using this site since ages but I never had to ask something because I always found the answer in someone else's question lol ...
0
votes
0answers
23 views
SQL Server Compact Edition error
I have added a setup project to my project and added the 7 .dlls to it. When I install the application, it gives errorr that the correct version of SSCE is not installed.
This application runs very ...
0
votes
0answers
56 views
using IN condtion in SQL CE
How we can we pass list of values as parameters in SQLCE?
using the below code works (when directly passing list of values in query)
SqlCeCommand cmd = string.Format("Select VMID from Booking ...
0
votes
1answer
175 views
Does Windows 8 Desktop Applications (Not Metro or Store apps) support SQL Server CE 3.5?
Does Windows 8 Desktop Applications (Not Metro or Store apps) support SQL CE 3.5?
When I tried to work with SQL Server CE, I get the following error:
...
3
votes
2answers
761 views
Getting Delphi 7 to play with SQL Server Compact 3.5
We have an old application that was written in Delphi 7. It is currently connected to an old Oracle Lite database that is being retired. The powers that be have chosen to move the data to a ...
0
votes
1answer
96 views
Working on SQL Server CE 3.5 file over lan for multiple users
I'm working on a project with C# (vs2010 environment) this project require a SQL Server CE 3.5 database for several functions. Working on a local .sdf for one user shows no problem but when I run my ...
0
votes
1answer
63 views
Need help optimizing this query
I have a big problem with first run query form my SQL Server CE database.
I already applied this optimization Performance and the Entity Framework, but still first query take about 15 sec to run.
...
0
votes
0answers
216 views
SQL Server Compact Edition delete with inner join
Is it possible to use delete with inner join in SQL Server Compact Edition? What is the CE equivalent of this SQL Server query?
delete a from employee a inner join department b
on ...
0
votes
1answer
139 views
Entity Framework, DATALENGTH, SUM on different providers
SQL Server CE 3.5
SQL Server 2008
DataLenSumQuery:
SELECT SUM(DATALENGTH(Data)) FROM ...
On SQL Server CE the type of Data column is IMAGE
On SQL Server Standard the type of Data is ...
1
vote
2answers
152 views
Delete all rows except 1 the most recent
Want to delete all rows from table except 1 that is the most recent.
This query works fine with SQL Server 2008 Standard edition:
DELETE S1
FROM StateLogs S1, StateLogs S2
WHERE S1.NodeId = ...
0
votes
0answers
67 views
Change database from SQL Server Compact 3.5 to full SQL Server in the course of the project
I created an application in VB.NET 2010. The program uses SQL Server Compact 3.5.
Everything works as it should. Unfortunately, it turned out that the application will be used by multiple users. ...
0
votes
1answer
1k views
How can I connect to a SQL Server Compact 3.5 file as a data source in Visual Studio 2012?
Visual Studio 2012 comes with SQL Server Compact 4.0. I have installed SQL Server Compact 3.5 from http://www.microsoft.com/en-GB/download/confirmation.aspx?id=5783 However I still only have the ...
3
votes
4answers
530 views
Synchronisation SQL Server Compact 3.5 in C#
In my project, I want to sync SQL Server Compact 3.5 with MSSQL Server 2008. I passed all steps in Visual Studio 2010 like adding New Item >> Local Database Cache >> Configure Data Synchronization ...
0
votes
1answer
71 views
How can I use a linq2sql database on wp7 mango, while maintaining blendability?
I'm trying to create a WP7 application using MVVM Light and SQL Server CE as a database. To accomplish this I generated a datacontext using sqlmetal.exe (1).
This works ok if I run the application on ...
0
votes
2answers
605 views
Having Trouble with Entity Framework. Adding a new row
Having Trouble with Entity Framework. I have been adding a new row to Iktato table but is not work.
CREATE TABLE [Iktato] (
[TIPACT] nvarchar(3),
[NRINREG] int NOT NULL identity(1,1),
[DATAINREG] ...
1
vote
1answer
439 views
Windows CE 6.0 SQL Server Compact 3.5
I would like to programatically create a database under Windows CE 6.0. It should use SQL Server Compact 3.5.
The problem is, that I don't know how to start here. I cannot find proper examples of ...
1
vote
2answers
336 views
SQL Server CE - Select random rows
How do you select a random rows from a table?
For example, if there are 1000 rows in a table matching the criteria that I want, I want to select just 20 random ones.
Like TOP, but random.
Thanks, ...
0
votes
2answers
1k views
How to save decimals in SQL Server Compact Edition?
decimal is a .NET (also other frameworks, rdbms and languages) value type that stores floating point numbers with decimal precision, instead of a binary one.
Is there any way of saving these values ...
0
votes
1answer
101 views
Unable to persist Entities to SQL CE using entity framework
I am stating out with entity framework. I have created my ADO.NET Entity Model and mapped the entities to a local SQL CE database file (all done via the wizards). I have created a unit test to test ...
0
votes
2answers
1k views
The type initializer threw an exception
I'm writing an C# app using SQL Server CE. Evrtting works fine to now whem I get this exception: "The type initializer for 'VideoStoreManager.AppData.DataBaseManager' threw an exception." for this ...
0
votes
1answer
441 views
Visual Studio 2008 SP1 assembly reference confusion
I am using Visual Studio 2008 SP1 on Windows XP SP3 to develop some .NET Compact Framework 3.5 SP1 solution for Windows CE 6.
I want to use SQL Server Compact 3.5 SP2 in my solution, however I notice ...
2
votes
1answer
2k views
Create view in SQL Server CE 3.5
I'm using SQL Server CE as my database.
Can I create a view in SQL Server CE 3.5 ? I tried to create but its saying create view statement not supported.
In my application I have table called Alarm ...
1
vote
2answers
166 views
count only null values in SqlserverCe3.5
I'm working on asp.net website.
I'm not able to count the only null values for particular id from the database Sqlserverce.
suppose I have table called Alarm
alarmid date
1 12/12/2010
2 ...
0
votes
1answer
364 views
Entity Framework 4.1 and Pre-Generating Views
I implemented the suggestion in this how to article from msdn, and my first initial entity framework query is still taking 3-4 seconds. The same query comes back instantly with a SqlCommand. Does ...
1
vote
1answer
367 views
SQL Server Compact Edition 3.5 gives “Multiple-step operation generated errors” error for simple query
I'm using a SQL Server CE database via Microsoft's OLEDB 3.5 SQL CE Driver. Here's my connection string:
Provider=Microsoft.SQLSERVER.CE.OLEDB.3.5;Data Source=C:\Users\me\Desktop\test1.sdf
This ...
1
vote
1answer
187 views
How can I get individual results in SQL Server CE
I'm using SQL Server CE as my database with asp.net.
I'm querying the database as follows.
SELECT DispatcherName, ActivityType, COUNT(ActivityType) AS Total
FROM Activity
WHERE (BeginTime >= ...
1
vote
2answers
239 views
SQL query for SQL Server Compact Edition 3.5 - GROUP BY issue
SELECT BabyInformation.* , t1.*
FROM BabyInformation
LEFT JOIN
(SELECT * FROM BabyData
GROUP BY BabyID
ORDER By Date DESC ) AS t1 ON ...



