문제

이 버전의 DB에 대한 DB의 내용을 탐색하고 싶습니다. 나는 다람쥐 DB 클라이언트 (JDBC 드라이버가 필요한)를 사용하려고 생각하고있었습니다.

따라서 SQL Server 3.5 용 JDBC 유형 4 드라이버를 찾고 있습니다. Somone이 무료 또는 오픈 소스 또는 시험 도자기를 가리킬 수 있습니까?

JDBC 드라이버가없는 경우 MS 개발자는 주어진 .SDF 파일을 어떻게 탐색합니까?

고맙습니다,

Br,
~ a

도움이 되었습니까?

해결책

SQLCEATITOR라는 무료 프로그램이 있습니다.

Eclipse 및 Java와 함께 쉽게 사용할 수 있기 때문에 여전히 JDBC 드라이버를 원합니다.

다른 팁

JTD를 사용해보십시오. SQL Server 및 Sybase 용 무료 소프트웨어 JDBC 드라이버입니다.

http://jtds.sourceforge.net/

당신은 시도 했습니까? SQL Server Management Studio Express?

SQL Server Compact 3.5 데이터베이스는 SQL Server 또는 SQL Server Management Studio Express (SSMSE)에서 SQL Server Management Studio를 사용하여 스마트 장치 또는 데스크탑 컴퓨터에 저장된 데이터베이스에 액세스 할 수 있습니다. http://technet.microsoft.com/en-us/library/ms172037.aspx

JDBC 드라이버는 이 하나, Microsoft가 제공합니다. Compact Edition에서 작동하는지 또는 이미 시도했는지는 모르겠지만 언급 할 가치가 있다고 생각했습니다.

1- JDBC 드라이버가 없으며 글을 쓰는 시점에서 MS는 만들 계획이 없습니다.

2- ODBC 드라이버가 없으므로 다음 명백한 답변 (JDBC에서 ODBC 브리지)은 도움이되지 않습니다.

3- 일부 JDBC 공급 업체는 '모든 OLEDB'데이터 소스에 연결할 수 있다고 주장하므로 Yoru가 가장 좋은 방법입니다. 링크, 그러나 반드시 무료 일 필요는 없습니다.

JDBC driver uses TCP/IP connection. The compact edition most likely cannot listen on TCP/IP port 1433. Compact Edition is meant to be accessed by an application which has loaded the .dlls necessary to talk to it. It's meant for Visual Studio projects.

You need to uninstall compact edition and install SQL Express 2005/2008 instead. After installation enable the "sa" account, give it a password, enable SQL+NT authentication, and then enable the TCP/IP listener to listen on port 1433 (the default port).

Then, finally, you can connect with JDBC. Jtds is a JDBC3.0 driver and therefore requires JDK1.6+ . I prefer using the Microsoft 2005 JDBC2.0 driver.

Use SDF Viewer to explore your .SDF database file, can also import/export data, script and work with tables, indexes and foreign keys.

If you're into linq syntax, you can also use LinqPad. There's a free version that allows exploring the data and editing it. You would pay for autocompletion but you can live without it. I hope this helps.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top