Click here to Skip to main content
15,887,214 members
Home / Discussions / Database
   

Database

 
GeneralRe: how can i get Minmam value Pin
Blue_Boy1-May-08 2:46
Blue_Boy1-May-08 2:46 
GeneralRe: how can i get Minmam value Pin
asha_s1-May-08 3:13
asha_s1-May-08 3:13 
GeneralRe: how can i get Minmam value Pin
Blue_Boy1-May-08 3:26
Blue_Boy1-May-08 3:26 
GeneralRe: how can i get Minmam value Pin
asha_s1-May-08 3:36
asha_s1-May-08 3:36 
GeneralRe: how can i get Minmam value Pin
Blue_Boy1-May-08 3:40
Blue_Boy1-May-08 3:40 
GeneralRe: how can i get Minmam value Pin
asha_s1-May-08 3:44
asha_s1-May-08 3:44 
GeneralRe: how can i get Minmam value Pin
Blue_Boy1-May-08 3:47
Blue_Boy1-May-08 3:47 
QuestionSQL Server Replication Pin
abdurrahman oğuz30-Apr-08 23:13
abdurrahman oğuz30-Apr-08 23:13 
i'm using SQL Server 2005, Windows XP SP2, Visual Studio .Net 2003, AVG anti-virus, no firewall, no proxy.

i configure IIS (virtual directory) and SQL Server (publication) as described in Miscrosoft web site.
i installed Microsoft SQL Server 2005 Mobile Edition and configured for web sycronization. i tried everything which mentioned in many blogs, forms and msdn but i recieve the error "Header Information is either is corrupted or missing..."

When i type "http://[Server IP]/[Virtual Directory]/sqlcesa30.dll", it return a valid result but i cannot connect to SQL Server for Pull or Push or SubmitSql process.

here is my code

string rdaOleDbConnectString = "Provider=SQLOLEDB;" +
    "Data Source=" + MainForm.ServerIP + ";" +
    "User Id=" + MainForm.DBUserID + ";" +
    "Password=" + MainForm.DBPassword + "; " +
    "Initial Catalog=" + MainForm.DBName + ";";
SqlCeRemoteDataAccess rda = null;
try {
    rda = new SqlCeRemoteDataAccess();
    rda.InternetLogin = MainForm.WebUserID;
    rda.InternetPassword = MainForm.WebPassword;
    rda.InternetUrl = "http://" + MainForm.ServerIP + "/" + MainForm.WebDir + "/sqlcesa30.dll";
    rda.SubmitSql(txtQuery.Text, rdaOleDbConnectString);
    MessageBox.Show("The query execution is successfull");
}
catch (SqlCeException exc){
    MessageBox.Show(exc.Message);
    return;
}
finally{
    rda.Dispose();
}


is there any suggestions?
AnswerRe: SQL Server Replication Pin
Blue_Boy1-May-08 0:11
Blue_Boy1-May-08 0:11 
GeneralRe: SQL Server Replication Pin
abdurrahman oğuz1-May-08 2:02
abdurrahman oğuz1-May-08 2:02 
QuestionSQL Query Issue: MSSQL vs. Access Pin
PDTUM30-Apr-08 19:33
PDTUM30-Apr-08 19:33 
GeneralRe: SQL Query Issue: MSSQL vs. Access Pin
Youtea30-Apr-08 20:26
Youtea30-Apr-08 20:26 
GeneralRe: SQL Query Issue: MSSQL vs. Access Pin
PDTUM1-May-08 3:54
PDTUM1-May-08 3:54 
GeneralRe: SQL Query Issue: MSSQL vs. Access Pin
Youtea1-May-08 16:29
Youtea1-May-08 16:29 
GeneralRe: SQL Query Issue: MSSQL vs. Access Pin
Rob Graham2-May-08 3:33
Rob Graham2-May-08 3:33 
GeneralRe: SQL Query Issue: MSSQL vs. Access Pin
PDTUM2-May-08 6:02
PDTUM2-May-08 6:02 
AnswerRe: SQL Query Issue: MSSQL vs. Access Pin
Mike Dimmick2-May-08 6:02
Mike Dimmick2-May-08 6:02 
QuestionHow to calculate count? Pin
GroCareer30-Apr-08 17:25
GroCareer30-Apr-08 17:25 
AnswerRe: How to calculate count? Pin
Harini N K30-Apr-08 18:58
Harini N K30-Apr-08 18:58 
QuestionDatabase upload and Append Pin
L²+D30-Apr-08 3:24
L²+D30-Apr-08 3:24 
AnswerRe: Database upload and Append Pin
Rob Graham30-Apr-08 11:42
Rob Graham30-Apr-08 11:42 
GeneralRe: Database upload and Append Pin
L²+D1-May-08 3:21
L²+D1-May-08 3:21 
GeneralRe: Database upload and Append Pin
Youtea1-May-08 16:36
Youtea1-May-08 16:36 
RantRe: Database upload and Append Pin
Youtea2-May-08 5:40
Youtea2-May-08 5:40 
GeneralRe: Database upload and Append Pin
L²+D2-May-08 6:41
L²+D2-May-08 6:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.