First Database Complete, Can't Connect!

Nov 22, 2007

Hello all! A while ago I started cataloging my collection of old radio recordings and I wrote a simple Visual Basic 2005 program to display them in a nice UI. I have implemented an SQL database with the project and all is fine, when I run the program it connects to the sql server and downloads the data. But when I try and change something by connecting from within Visual Basic at runtime with this code:

Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click
Dim ConnectionString As New SqlConnection("Server=MARK-HOMESQLEXPRESS;Database=Library.mdf;Uid=MARK-HOMEMark;Pwd=sodoff;")
Dim sqlString As String
ConnectionString.Open()
sqlString = "UPDATE JackBenny SET Rating='Excellent' WHERE [Episode Number]=" & epNumber
ConnectionString.BeginTransaction(sqlString)
ConnectionString.Close()
End Sub

I get this error code in the log and a general unable to login error within Visual basic itself:

2007-11-22 15:44:39.78 Logon Error: 18456, Severity: 14, State: 5.
2007-11-22 15:44:39.78 Logon Login failed for user 'Mark'. [CLIENT: <local machine>

The state of 5 refers to "User ID is not valid." but I can login to SQL Server Management Studio Express just fine with the username and password in the code posted. Also of note, I can login to the Server Managment with the sa account username and password. When I use the credentials in visual basic code, same error. Any ideas? I am trying to connect to a database which is on this computer (local) in the root folder of the application, called Library.mdg.

Thanks so much all

View 7 Replies


ADVERTISEMENT

How To Copy Complete Database?

Jun 15, 2006

how can i copy a complete database (tables, views, stored procedures) with/in the sql server 2005 "server mgm. studio". the import/ export function only copys the data (tables).
sql server 2000 had a nice tool for that (import/ export data). but how can i do that with the sql server 2005. can't find anything ...

View 3 Replies View Related

Encrypting Complete Database

Nov 12, 2007



Hi,

How can I encrypt / decrypt whole database (data, objects ... everything) in SQL Server 2005 Express Edition?
Quick solution from any champion of Databases would be highly entertained.

Waiting ..

Thanks a lot.

View 4 Replies View Related

How To Truncate Complete Database?

Oct 26, 2006

Hello,

I want to truncate all tables present in the particular database, Is there any simple way to do it? or do I have to do it on individula basis (table by table)?



regards

View 4 Replies View Related

Complete Lack Of Database Connectivity

May 9, 2008

 A couple of days ago I installed SQL Server 2005 developer. To pave the way for this I removed SQL Server 2000 and 2005 Express. Since then I've been unable to connect from any of my applications or websites in Visual Studio 2005 to either:- my new 2005 Developer database engine- my colleagues 2005 developer database engine. My colleague can connect to my databases from his visual studio on his machine. I am receiving unspecified OleDb errors.Anyone else had this happen? Anyone know where I should start looking? I've uninstalled all .Net frameworks and re-installed 1.1 and 2.0.Many thanks, Sam 

View 3 Replies View Related

Adding Timestamps To Complete Database Backup

Mar 19, 2007

Facundo writes "Hi:
How can i add a timestamp to a generated file of a complete database backup, the idea is to archive full database backups using the date to identified it.

Thanks a lot.

FB"

View 1 Replies View Related

Remote Database Updates Take Long Time To Complete

Jul 20, 2005

HiI have have two linked SQL Servers and I am trying to get remote writesworking correctly (fast).I have configured the DB link on both machines to:Point at each others DB.I have security set up to map each others server loginsand Server Options: Collation Compatible, Data Access, RPC, RPC Out, UseRemote Collation all checkedMy problem is that when a SP performsBegin TransactionUpdate Local TableUpdate Remote TableCommit TranIt takes several seconds to complete. (about 7 seconds not acceptable tous)This is due to the remote update - how can I improve the response time?example of a stored procedures that takes timewhere ACSMSM is a remote (linked) SQL Server.procedure [psm].ams_Update_VFE@strResult varchar(8) = 'Failure' output,@strErrorDesc varchar(512) = 'SP Not Executed' output,@strVFEID varchar(16),@strDescription varchar(64),@strVFEVirtualRoot varchar(255),@strVFEPhysicalRoot varchar(255),@strAuditPath varchar(255),@strDefaultBranding varchar(16),@strIPAddress varchar(23)asdeclare @strStep varchar(32)declare @trancount intSet XACT_ABORT ONset @trancount = @@trancountset @strStep = 'Start of Stored Proc'if (@trancount = 0)BEGIN TRANSACTION mytranelsesave tran mytran/* start insert sp code here */set @strStep = 'Write VFE to MSM'updateACSMSM.msmprim.msm.VFECONFIGsetDESCRIPTION = @strDescription,VFEVIRTUALROOT = @strVFEVirtualRoot,VFEPHYSICALROOT = @strVFEPhysicalRoot,AUDITPATH = @strAuditPath,DEFAULTBRANDING = @strDefaultBranding,IPADDRESS = @strIPAddresswhereVFEID = @strVFEID;set @strStep = 'Write VFE to PSM'updateACSPSM.psmprim.psm.VFECONFIGsetDESCRIPTION = @strDescription,VFEVIRTUALROOT = @strVFEVirtualRoot,VFEPHYSICALROOT = @strVFEPhysicalRoot,AUDITPATH = @strAuditPath,DEFAULTBRANDING = @strDefaultBranding,IPADDRESS = @strIPAddresswhereVFEID = @strVFEID/* end insert sp code here */if (@@error <> 0)beginrollback tran mytranset @strResult = 'Failure'set @strErrorDesc = 'Fail @ Step :' + @strStep + ' Error : ' + @@Errorreturn -1969endelsebeginset @strResult = 'Success'set @strErrorDesc = ''end-- commit tran if we started itif (@trancount = 0)commit tranreturn 0

View 2 Replies View Related

SQL Tools :: BCP And BULK INSERT To Copy Complete Database Contents?

Jan 29, 2015

Script: [URL] ....

I need to move all of the contents of one database into anther with the same schema, and it looks like this might be just what I need. But it is from 2007, so I wonder if it is still current?

Also, having tried to run it on another database to generate the script that will actually do the copying, I have a few questions. It looks like it generates statements to import the data twice. For example:

BULK INSERT [TaPerfGDB].[dbo].[i1]
   FROM 'C:Tempi1.Dat'
   WITH (FORMATFILE = 'C:Tempi1.FMT',
         BATCHSIZE = 1000000,
         ERRORFILE = 'C:TempBI_i1.ERR',
         TABLOCK);

And a little later:

INSERT INTO [TaPerfGDB].[dbo].[i1]
    SELECT *
      FROM  OPENROWSET(BULK  'C:Tempi1.Dat',
      FORMATFILE='C:Tempi1.Xml'
      ) as t1;

That does not really make any sense to me. It also generates statements like this:

bcp "[TaPerfGDB].[dbo].[GDB_GEOMNETWORKS]" format nul -n -CRAW -f "C:TempGDB_GEOMNETWORKS.fmt" --S"PGALLUCC-M7" -T

What is the deal with the double hyphen by the servername? Won't it just see that as a comment? It can be easily fixed, but I am just suprised that it is still there after all these years. My purpose in doing this is a desparate attempt to salvege a database that sits on a server with multiple drive errors. These prevent backups, so I cannot just restore the database on the new server. That is why I want to try an approach that goes table by table, so that at least all the tables which are not touched by the drive errors can be moved.

It is a 3 TB database running on SQL Server 2008 R2 std. ed.

View 2 Replies View Related

Backup Failed To Complete The Command Backup Database

Aug 4, 2007

Backup failed to complete the command backup database [ ] TO VIRTUAL DEVICE = ' { 853D3FC0 - 45EA -85B1 - 54F0EA379CAC } 24 ' WITH SNAPSHOT , BUFFERCOUNT = 1 , BLOCKSIZE = 1024

View 1 Replies View Related

Delay Between CREATE DATABASE And Ability To Connect To That Database

Oct 9, 2006

I have an application that creates a new database during installation,and I've noticed some strange behavior. Once I've created thedatabase, I am able to immediately create tables and populate lookupdata, provided I remain connected to the server. If, however, Idisconnect and attempt to reconnect immediately, I'll get an errorsaying that my login is invalid for the new database.I can get around this by having my code simply wait 5 seconds beforeattempting to reconnect, but I'm curious to see if anybody here cangive an explaination for why this is happening. Here is a bit ofpseudo code to explain what I'm seeing:open new connectioncreate databasecreate tablespopulate tablesclose connection// open new connection /* can't do this yet, as it would break */for (int a=0; a<5; a++){Thread.Sleep(2000)try{open new connectionbreak;}catch{Debug("still waiting...");}}Running my version of this code, I'll see that "still waiting..."message go past 2-3 times before SQL Server wakes up and realizes thatI'm allowed to connect to it. Anybody know why?Thanks,Jason KesterExpat Software Consulting Serviceshttp://www.expatsoftware.com/---Get your own Travel Blog, with itinerary maps and photos!http://www.blogabond.com/

View 1 Replies View Related

Can Connect To Database, But How Do I Insert Values Into SQL Database?

Jun 14, 2006

I was able to connect to the SQL Database Pension with table clients with table values: ID, State, Name.'Create(connection)Dim conn As New Data.SqlClient.SqlConnection(ConfigurationManager.ConnectionStrings("ConnectionString").ConnectionString)'open connectionconn.Open()However, I'm not sure how to insert a new row with an incremental ID number and a new State and Name.Sorry, I'm really new with VWD.

View 1 Replies View Related

Adventure Works Database, I Can't Connect To The Database

Jul 16, 2006

Database not found !

My web.config file has this bit of code:

<connectionStrings>

<add name="AppConnectionString1" connectionString="Data Source=&quot;.SQLEXPRESS&quot;;AttachDbFilename=&quot;C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLDataAdventureWorks_Data.mdf&quot;;Integrated Security=True"

providerName="System.Data.SqlClient" />

</connectionStrings>

But........................... the is no "AdventureWorks_Data.mdf" in that folder ?

And the database is installed in the right place !

help !

View 6 Replies View Related

DTS On Complete

Apr 14, 2008

 What can I do to make OnComplete and OnSuccess mean something in SQL Server 2000 DTS?I have this pretty simple package that imports data into a table from an XLS file, then runs an external console application which manipulates the data and drops into a different table.That data is then used to create a CSV file. If I execute each step individually, the whole thing works. But what it happening is that the end file is being created before the console app is finished.I have a workflow line (on complete) between the 2 processes, but that doesn't seem to mean anything. To run the external app I am just using an active x script task...CreateObject("WScript.Shell").Run "my file" Any advice? 

View 1 Replies View Related

Can Not Connect To Database

Aug 10, 2006

I am new to windows apps in .net 2.0. I am trying to create a windows service that will connect to a database and email info out to people that have had status changes.
Right now, I can not connect to the database. Here is the connection string:
Private cnn As New SqlClient.SqlConnection("Data Source=IPAddress;Initial Catalog=TheServer;Persist Security Info=True;User ID=userid;Password=password provider=SQLOLEDB.1;connect timeout=3600")
This is how I am trying to connect:
cnn.Open()
myCMD.CommandTimeout = 0
dr = myCMD.ExecuteReader
 
I keep getting an error message that I can not be logged on. I know that the credentials are correct because I use them for the web app. Something has to be wrong with my connection string, but what?
Thanks,
enak

View 2 Replies View Related

Cannot Connect To Sql Database

Sep 1, 2006

 I'm using Visual Web Developer and SQL 2005...It Guives me this error...: An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) I'm tired of guetin and search solution for this errorI've tried everything that i searched over the "net"...made all the configurations possible in sql server 2005 and nothing...Is this right? Or do i need to put some more code in this line or in server is it "localhost:****...: ...connection = New SqlConnection("Server=servernameWebSite1uid=sa;pwd=1234;database=cdcollection")connection.Open()...... Don't know why in sql server i have two object explorer connections when i start the sql server...one is  "servername"...two is "servernamesqlexpress" (but when trying to connect with "servernamesqlexpress" it won't let me, only with "servername")...i use the windows authentication......when i had the VB.NET 2003 and SQL Server 2000, it was much easy to do this... In ASP.NET config i still have the C:inetpubwwwroot path but the files don't go there...now they go to my documentsVisual studio 2005 by default of Visual Web Developer prog. Do i need to change the location? Please help...i'm really desperate...with this... 

View 2 Replies View Related

Can't Connect To Database

Nov 1, 2006

I am developing my first website for my boss.  I am trying to connect to an access database which I have created a DSN for on the server.  I am using the following code sample.... //Connection String 1string dsn_name = "access_WALLINVEN.dsn";string sDSNDir = Server.MapPath("_dsn");string connectstr = ("Data Source="+ (sDSNDir + ("\" + dsn_name)));//Connection String 2string connectstr = "Data Source=/jwallpaint/_dsn/access_WALLINVEN.dsn;Uid=jwallpaint;Pwd=J2512wall;";string commandString = "Select * from Inventory";//Pass strings to sqlDataAdapter constructorSqlDataAdapter dataAdapter = new SqlDataAdapter(commandString, connectstr);//Create a datasetDataSet dataSet = new DataSet();//fill the dataset objectdataAdapter.Fill(dataSet, "Inventory");//Get the table from the datasetDataTable dataTable = dataSet.Tables["Inventory"];//Bind to the gridviewGridView1.DataSource = dataTable;GridView1.DataBind();For Connection String 1 I get the error of...An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) For Connection String 2 I get the error of...An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) I am not sure which connection string to use either....It is strange to me that I get this error talking about SQL Server when I am trying to reach my Access database......Any Help??  Thanks....

View 1 Replies View Related

VWD - Cannot Connect To Database.

Nov 17, 2006

Hi,
I'm on lesson 7 of the Bob Tabor video tutorial called 'Data binding to user interface controls'. Whenever I try to add an SQL database (add new item/sql database) I get the following error message:
TITLE: Connect to Server
------------------------------
 
Cannot connect to ALFIESQLEXPRESS.
 
------------------------------
ADDITIONAL INFORMATION:
 
An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) (Microsoft SQL Server, Error: -1)
I have VWD installed, sqlexpress installed, everything really.
Any help would be appreciated.
MD

View 1 Replies View Related

Cannot Connect To Database

Nov 30, 2006

I am attempting to connect to a database that has been uploaded to my server from my webpages on the server.  This is the connection string that is currently used:
connectionString="Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|Restaurants.mdf;Integrated Security=True;User Instance=True"
When attempting to connect to the database I receive this error message:
An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
I realize that I cannot make a remote connection using SQL Server 2005 Express Edition, but cannot find the proper connection string for it to connect to the uploaded database.
Accessing the database doesn't require a log on by the user as all the information is public.
The authentication mode in the web.config file is set to "Forms".
 If there is any other information required so that this problem can be solved, please ask for it.
Thank you in advance,
Me

View 1 Replies View Related

Just Cant Connect To Database.

Apr 17, 2007

when i run application from visual studio im getting this error. Server Error in '/' Application.
Cannot open database "Products" requested by the login. The login failed.
Login failed for user 'GAMERKALESH'. when run from web browser:  Server Error in '/' Application.Cannot open database "Products" requested by the login. The login failed.Login failed for user 'GAMERASPNET'. my comp name is: Gamerand acc name is : Kalesh using Microsoft Studio Server Management studio express  i have added these accs:in security of databas products: ASPNET and IUSR_GAMER in general security i have added accs: GAMERASPNET and GAMERIUSR_GAMER using windows authentication.  

View 1 Replies View Related

Can't Connect To Database

Sep 11, 2007

 I just did a ton of work in SQL Server Management Studio Express and now I want to access the database from a Web Developer 2005 Express Edition application.  Can't find any documentation on how to connect to the database from vwd.  Any assistance would be appreciated. Thanks, Tom 

View 3 Replies View Related

Can't Connect To Database

Sep 21, 2007

Ok I have several sites on a server that have connected to databases on a different server for a long.  Out of the blue today none of the sites on the server can connect to any databases on the other server.  However, sites on other servers can connect to databases on the same db server.This is the message I get:An error has occurred while establishing a connection to
the server.  When connecting to SQL Server 2005, this failure may be
caused by the fact that under the default settings SQL Server does not
allow remote connections. (provider: Named Pipes Provider, error: 40 -
Could not open a connection to SQL Server)The database server runs SQL Server 2000 not 2005 I can connect to the database from desktop (with an asp.net application or sql server management studio), I can ping the database server fine from the production web server, but my applications can't connect for some reason.  There is nothing in the event log to suggest a problem, any ideas what could be causing this?  

View 3 Replies View Related

Not Able To Connect To Sql Database

Sep 30, 2007

Hello,
 I have posted awhile ago about this issue, but after taking the advice and trying to get help from GoDaddy, nothing has worked yet.  I am using the user login control, and then I changed the connection string in the web config file according to what Go Daddy's help file said, making sure to make proper server, id, and password names.  It still won't go through, can anyone help?
 
Thanks

View 3 Replies View Related

How To Connect With SQL Database?

Oct 25, 2007

I am new learner of ASP.NET and coding in C#.I am not able to connect the SQL database.I have written the code for connection of database but to write the connection string web.config file is neccessary which is not apearing in my application. Please help me .Here is code I have written.   
 
string sCon = ConfigurationManager.ConnectionStrings["ConnectionString"].ToString();SqlConnection oCon = new SqlConnection(sCon);
try
{
oCon.Open();string sQuery = "Select Offering1,Offering2,Offering3 from Offering";SqlCommand oCmd = new SqlCommand(sQuery, oCon);
oCmd.ExecuteNonQuery();
DataSet oDs = new DataSet();SqlDataAdapter oDa = new SqlDataAdapter(oCmd);
oDa.Fill(oDs);
DataList1.DataSource = oDs;
DataList1.DataBind();
} catch (Exception ex)
{
ex.ToString();
}

View 17 Replies View Related

Can Not Connect To Database

Jan 4, 2005

I recently uninstalled SQL Server due to connection issues I started having. I could start the DB and connect/edit tables in Ent Mgr etc, but all the sudden, none of my code could make DB connections.

So, after reinstalling now nothing works. I cannot even connect in Ent. Manager. I went to Administrative Tools->Services to make sure it was running, and SQLSERVER isn't even listed under services. What happened? Is there another step after installing SQL Server I missed to get the service up and going. Do I need to do something in ODBC connections?

I am on Windows XP with SP2.

Tim

View 12 Replies View Related

Could Not Connect To Database

Jan 16, 2005

Hello I am new to the ASP.NET project and using Microsoft ASP.Net Web Matrix. When I try to connect to an Access Database it is no problem, but do I try to set up an connection with a SQL or MSDE database there is a problem.

It can not connect with my SQL server and gives the error:
Could not create new database.

What can be the problem. My MSSQL Server is running perfect.

Greets
Ben
Holland

View 1 Replies View Related

Help Me About Connect To My Database

Aug 7, 2005

i design a web site by vs.net 2003 and i connect to sql database its name rayan but when build my webfrom a error show this is   system.data.sqlclient.sqlexception:login faild for user "rayanaspnet" please help me

View 1 Replies View Related

Cannot Connect To Database Using EM

Apr 25, 2006

Greetings,

A newbie needing some guidance. We have SQL running on our Windows 2003 server. When I connect via the Enterprise manager I have two instances of SQL running.

SRV01ACT7 (Windows NT)
SRV01WEBAPP (Windows NT)

When I click on the ACT instance I get the following error:
A connection could not be established to SRV01/ACT7

Reason: Login Failed for user xxxxadministrator.
Please verify SQL Server is running and check your SQL Server registration properties.

I only get the message when I try to connect to the SRV01ACT. The connection to SRV01WEBAPP works fine.

I checked with SQL server manager and both instances are running and no one has reported any problems connecting to either one of them.

The way it acts, its as if SQL server has lost the ability to authorize a connection via the windows account. As if it has lost its associatoin to the administrator account. So while the instance still runs and is functional, I just can't connect to it and manage it.

I have connected via remote desktop from a WinXP machine and the server console. Both end up with the same error.

Can Someone give me step by step instructions on how to correct this?

Any help please!!!

View 20 Replies View Related

Cannot Connect To Database From App

Sep 24, 2007

Update: I got it working. I had to create an odbc connection on my machine (guess I forgot to do that this time).



I copied a SQL 2005 database from another machine (detached it first. I can connect directly in SFT SQL Server Mgmt Studio, but I cannot connect from VFP using SQLCONNECT(). I've overlooked something. My login is the db_owner and everything else. Any ideas? SQL Server is running on the same machine that I have VFP9 on. It is setup for both SQL Server and Windows Authentication and I can connect to every other database I have attached.

TIA,

View 4 Replies View Related

Can't Connect To Database

Mar 26, 2008

I can't connect to a SQL Server 2000 database.

I opened SQL Server 2005 Management Studio and tried to connect. In the Connect to Server dialog box, when I go to the Server Name dropdown and browse for my database server on the network, the server is not in the list. (A different SQL Server 2000 database server does show up there.) I tried manually entering the server name (and password, etc) but it doesn't connect.

When I go to the server, the db is running and apps that use it work fine. I can ping the server, and I can map a drive to it.

I can't connect using Visual Studio 2008 either. When I try to create a SqlDataSource in Visual Studio the db server isn't in the dropdown list. Also, when I manually create a connection string it doesn't connect.






View 5 Replies View Related

Cannot Connect To Database

Aug 1, 2015

I cannot connect to Sql server 2014.

Error message:
TITLE: Connect to Server
Cannot connect to ANILWORKPC.

ADDITIONAL INFORMATION: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 2). URL....

View 3 Replies View Related

Can't Connect To Database

Nov 1, 2007

Hi I recently installed SQL server but I can't connect to the database. The error message is "under the configuration SQL server does not allow remote connections". What does this mean? I have already followed Step 1, 2 and 3 in the FAQ but I got the same error message. I had enabled TCP/IP. I have changed the values in IPALL and I have added SQL to the firewall exceptions list, but I still can't connect. And I don't understand, isn't the server on the local computer, so what does it means by "remote connections"?

View 6 Replies View Related

Can't Connect To The Database

Dec 31, 2007

Hi,

with the Visual Studio(Add New Data Source) i was able to add a SQL Compact 3.5 database to my desktop-project. Everything seems to be ok: dll assemblies, location of the database in my application folder...
But when trying to connect to the database like this:

SqlCeConnection _conn = new SqlCeConnection();_conn.ConnectionString = Properties.Settings.Default.MyDatabaseConnectionString;_conn.Open();the debugger comes up with this message:
'The file name is not valid. Check the file name for the database. File name = |DataDirectory|MyDatabase.sdf ]

i also tried to add the database path manualy. SqlCeConnection _conn = new SqlCeConnection(@"Data Source = C:MySQLCompactMyDatabase.sdf");_conn.Open();Then i get:Invalid provider type. [ Db version = 3004180,Requested version = 3004180,File name = C:MySQLCompactMyDatabase.sdf ]What's wrong? I'm using VS2005 and Vista 64. Thanks for your help, i'm new to SQL...'

View 6 Replies View Related

Connect To DataBase

Nov 3, 2007

Could someone help me with this error:
"Under the default settings SQL Server does not allow Remote Conections." I have SQL installed in my personal machine and I want to connect to "Local" DataBase.

View 19 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved