Tagged Questions

0
votes
1answer
31 views

“The specified table does not exist” - for the administrator it does! Vista only issue

Hello, I've got a weird bug occurring in a compact database on a Vista deployment machine. Basically the sdf file seem to be schizophrenic. The client application get the entitle …
0
votes
5answers
86 views
+150

add row to a BindingSource gives different autoincrement value from whats saved into DB

I have a DataGridView that shows list of records and when I hit a insert button, a form should add a new record, edit its values and save it. I have a BindingSource bound to a Dat …
0
votes
0answers
12 views

Open Connection to SQL Compact File, with other Extension than .sdf

I just can't open this connection, if the Extension is different than .sdf. It's there a workaround (Please do not suggest, changing the extension of the File temporarily) ? Thn …
2
votes
1answer
22 views

LINQ-to-SQL and SQL Compact - database file sharing problem

Hello. I'm learing LINQ-to-SQL right now and i have wrote a simple application that define SQL data: [Table( Name = "items" )] public class Item { [ Column( IsPrimaryKe …
2
votes
4answers
56 views

Entity Framework with File-Based Database

I am in the process of developing a desktop application that needs a database. The application is currently targeted to SQL Express 2005 and works wonderfully. However, I'm not c …
0
votes
1answer
20 views

Support for compact framework in subsonic 3.0?

I was wondering when support for compact framework and sql server compact edition will be added to the Subsonic 3.0 project?
1
vote
3answers
113 views

Is there a compact or express SQL Server version that I can package with my WinForms app & is free?

Hi, Is there a light weight version of SQL Server I could use that has the characteristics of: Free (assuming my winforms app is semi-commercial) Can be seemlessly packaged for …
0
votes
0answers
14 views

SQL Compact - Hang on invalid file

I use Linq to Sql Compact with code generated by sqlmetal. When I open an invalid database, like eg an mp3, I can create the DataContext without getting an Exception. But when I qu …
0
votes
1answer
21 views

SQL Compact import DB from SQL Server Express with Server Management Studio

Hi! I try to import sql script, generated with Server Management Studio, into SQL Compact 3.5 and get a lot of error. What I am doing wrong? I generate script with "Task/Generate …
0
votes
1answer
75 views

SQL Server Compact ‘Data Directory’ macro in Connection String - more info needed

So, as described on this msdn page, when you define a Connection String for SQL Server Compact 3.5, you can use the "Data Directory" macro, like this: quote from this msdn page: …
1
vote
3answers
78 views

How to import data in SQL Compact Edition?

I don't seem to find a tool for it, nor an odbc driver. Thanks UPDATE : I'm aware of the sql scripting possibilities. But than again : how to script a sql 2k table? (not just …
0
votes
2answers
109 views

SQL Server Compact timed out waiting for a lock

Hi all, I'm having an application in that i use Sql Compact 3.5 with VS2008. I'm running multiple threads in my application which contacts the compact database and accesses the row …
1
vote
0answers
30 views

sync framework server to server synchronization

I have kind of a such scenario: Here i need to synchronize local server database with main DB server(example: comuters in office are connected to office server and they use it l …
0
votes
2answers
33 views

Sql Compact and __sysobjects

I have some SQL Compact queries that create tables inside of transaction. This is mainly because I need to simulate temporary tables, which SQL Compact does not support. I do this …
0
votes
0answers
52 views

NHibernate + SqlCE - Forever Lazy?

I'm working on a Winforms app with NHibernate as my ORM layer. Everything is going well, but it doesn't seem that NHibernate is respecting my instructions to not use lazy loading. …