|
|
Up |
|
|
  |
Author: FergestFergest
Date: Jul 21, 2008 07:06
Hii
said that are brand new environment VST 2005
I'm trying to implement an application for pocket
when would the need to import data into a table
(Articles)
with three fields ID Code, Description
an archive. sdf on the pocket, from a txt file, the data are on txt
delimited;
I do not know the best idea how to do that.
Thank you all for any answers possibly with a
small example
sorry for my English
|
| |
|
| |
no comments
|
|
  |
Author: jp2msftjp2msft
Date: Jul 17, 2008 09:01
I am a Software Developer, and I love the idea of using SQL Server CE instead
of Microsoft Access; however, I seem to run into the problem of not being
able to find the place to download it from! Is it contained in a single file?
Is it SQL Server CE or 2005 Mobile? I found the Modile Edition SDK, but does
this include SQL CE?
Next comes the question of how to install it: We have SQL Server 2000 and
SQL Server 2005 here at work, and they require an Administrator to install
them because it is rather complicated. Is there a place that summarized how
to install SQL CE (after I find it)?
Once I've got an app running that uses SQL CE, is anything special required
to install that app on someone's machine that does not already have SQL CE
installed? This process was very simple using MS Access, but I want to find
out how to do it using SQL CE.
Thanks.
|
| |
|
| |
11 Comments |
|
  |
Author: HabibHabib
Date: Jul 17, 2008 07:06
We are currently have a problem with a new application, where we are using
the Entity Framework (Visual Studio 2008 SP1 beta), which only uses the
latest version of SQLCE 3.5 sp1 to read / update SQL Compact edition. This
currently is for a desktop application.
It seems that it is limited to only 8K of binary data, and 4K of text data.
We are using varchar(max) and varbinary(max).
Do you know of any hotfixes we could have to fix these problems, or who we
should be approaching to get help in these matters ?
Thanks
haib
|
| |
|
3 Comments |
|
  |
Author: agag
Date: Jul 17, 2008 02:02
Hello,
I insert rows in a table using a tabledirect command, and a SqlCeResultSet.
Could someone help me with the following questions ?
- When are the result flushed to the disk ?
- Is it possible to use transactions ?
- is-it a good practise to maintain a SqlCeResultSet through the application
live and use it to insert rows ?
regards,
arnaud
|
| |
|
3 Comments |
|
  |
Author: WernerGWernerG
Date: Jul 16, 2008 05:10
Hi there.
I have been trying to get merge replication to work between a Windows CE
device with SQL Server Compact Ed 3.5 and SQL Server 2005. I have made good
progress but got stuck with an error that Google can’t help me with. Firstly,
I will discuss my progress for those who might hope to get as far as I have.
1.) Installation steps on the DBase server
- Install IIS
- Install SQL Server 2005
- Install SQL Server Compact 3.5 Tools. You need this for the IIS part
because the tools that come with 2005...
|
| Show full article (2.17Kb) |
|
5 Comments |
|
  |
Author: jpkongjpkong
Date: Jul 13, 2008 17:42
Hi.
I wonder whether SQL CE editions support multi connection(also multi user),
multi session in connection or not.
If that, how many connections or sessions are supported by it?
For my case, I need the connections from a Web Server and an application to
SQL CE.
And in the application, it need multiple sessions in a connection for
transaction from various parts of the application.
Anyone let me know it?
Thanks in advance.
jp
|
| |
|
11 Comments |
|
  |
|
|
  |
Author: Jerod HoughtellingJerod Houghtelling
Date: Jul 11, 2008 14:24
Hi all,
I'm having an issue when executing an RDA pull and then creating a
secondary key from certain situations. Does anybody know of a good
tool that might help me track down this issue?
Pocket PC 2003 SE
C# Compact Framework 2.0
SQL Server 2005 CE
The issue occurs after an RDA pull does not finish successfully. One
way I get this to happen is if the device is rebooted in the middle
of
the RDA pull. The next time the program is ran the RDA pull finishes
successfully, but then the program crashes when I alter the table to
add a secondary key. The crash is uncatchable neither a
catch(Exception) or generic catch seems to do any good. The weird
thing is that if I change from applying a secondary key to any kind
of
data modifying sql statement the program still silently blows up. It
doesn't even matter if I use the same table that was being pulled!!!
|
| Show full article (0.89Kb) |
|
no comments
|
|
  |
Author: EnderEnder
Date: Jul 11, 2008 14:04
Hi, all.
When I'm trying to add BLOB data into a MSSCE table I get following error
First chance exception at $767442EB. Exception class EOleException with
message 'Not enough storage is available to complete this operation'.
Error code: 8007000E
The table declaration follows:
create table Pages(
ID integer identity (0, 1) constraint PK_Pages primary key,
Document_ID integer constraint FK_Pag_Document_ID references Documents(ID)
on delete cascade on update cascade,
PageOrder integer not null,
Data image,
constraint UC_Pag_PageOrder unique (Document_ID, PageOrder));
The statement is:
insert into Pages (Document_ID, PageOrder, Data) values (:xDocument_ID,
:xPageOrder, :xData)
The code which assign parameters is (Delphi):
|
| Show full article (1.62Kb) |
|
no comments
|
|
  |
|
|
  |
Author: EnderEnder
Date: Jul 10, 2008 10:47
Hello, all.
I think it is better place to post, instead of *.data.ado. Sorry for
multiposting.
Last four hours I fought with very strange error. When I try to open a table
through simple query (select * from TableName) ADO (OLEDB) gives to me
abovementioned error message. Some tables are opened without a problem but
for some tables there is error. I tried to determine what is the difference
between these tables and was very surprised. This error happens when table
have nvarchar fields with maximum length more than 127. For example this
table will be opened without problems:
For this table opening works
create table Projects(
ID integer identity (0, 1) constraint PK_Projects primary key,
Name nvarchar (127) not null);
but this table won't open
For this table opening doesn't work
create table Projects(
ID integer identity (0, 1) constraint PK_Projects primary key,
Name nvarchar (255) not null);
|
| Show full article (1.20Kb) |
|
2 Comments |
|
|
|
|
|
|