How to access my database through internet?

so my program have a database in it and the program have lots of getting and setting information from this database.
but this database is supposed to be on a server obviously, but since renting server is something that i put as last thing to do when i want to start full tests and debugging, i keep using database in the project, but if i have plan to later on remove this
database from my project and set my program to use the database on my server, how can i do this.
in general i want to know how to connect to a database on my server.and what are the possible changes i should do in my project

Hi soorena12,
Since this forum is discuss the VS IDE, based on your issue, I
am afraid that the issue is out of support of  Visual Studio General Question.
To help you find the correct forum to support this issue,could you please tell me which type database you create, is it a SQL Server or other?
What program you create for the database? If possible, please share some code about your issue here.
If you have any update information about your issue, please tell me.
Best Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • How to access file server through ethernet BUT internet though wireless

    I'm looking for a way to to run my file server network through ethernet while internet access is provided though wireless, but don't want users to have to switch off the wireless when they want to access the file server.
    File server is set up at trade shows and the conventions charge a fortune for internet access for multiple users and even more ($6000) for a connection that I'm allowed to put a router on. So I'm considering running my apple router for the file server network without internet access and just having my staff get their internet access from the cheaper wireless access the convention center has throughout the building.
    Problem is that I need them to be able to access the file server and the internet at the same time without switching back-and-forth from either network.
    Any suggestions? File server and all clients are macs.
    Message was edited by: Road Show

    Hello,
    Here are some good articles for this topic, please see:
    sql server connectity over the internet:
    http://www.codeproject.com/Questions/433687/sql-server-connectity-over-the-internet
    How To Connect SQL Server Through Internet:
    http://www.youtube.com/watch?v=VOUDdUJ5BLY
    Regards,
    Elvis Long
    TechNet Community Support

  • How to access Oracle database using UNIX?

    Hi,
    Does anyone know how to access Oracle database Oracle 8i that is hosted on unix server via unix command line?
    Thanks,
    Willy

    Well, Oracle probably has a command line tool. I think it's called sqlplus or somesuch. Check you Oracle docs.
    Of course, given that this is a Java forum, it's remotely possible that you're actually asking about accessing the database from a Java program.
    http://java.sun.com/developer/onlineTraining/Database/JDBC20Intro/

  • How to Connect MySQL Database Through JTable?

    Hi,
    How to Connect MySQL Database Through JTable? anyone of u knows these concept please send me coding of that Part..
    Thanks,
    Guru..

    Start by reading the tutorials. There's a section on Swing which shows you how to use tables and a section on JDBC which shows you how to use SQL.
    And you can always search the forum as well since there are working examples of both posted on the forum.
    If you need further help with a specific problem then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    Don't forget to use the [Code Formatting Tags|http://forum.java.sun.com/help.jspa?sec=formatting], so the posted code retains its original formatting.

  • How to access the database jar file using the derby 10.2.1.6 database ?

    Hi,
    How to access the database jar file using the derby 10.2.1.6 database ?
    I have used like below. And i am getting the following the error:
    "org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot load JDBC driver class 'org.apache.derby.jdbc.EmbeddedDriver'
    at org.apache.tomcat.dbcp.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1136)"
    My context.xml file looks like this:
    <Context crossContext="true">
    <Resource name="jdbc/derby" auth="Container"
    type="javax.sql.DataSource" driverClassName="org.apache.derby.jdbc.EmbeddedDriver"
    url="jdbc:derby:jar(\CalypsoDemo\database.jar)samples"
    username="xxx" password="xxx" maxActive="20" maxIdle="10"
    maxWait="-1"/>
    </Context>
    What could be the reason.?
    Any suggestions will be appriciated.
    Thanks in Advance,
    Gana.

    ya, I have restarted. Can you please tell me whether the path which i am giving is right or not in the context file?
    Thanks,
    Gana.

  • How to access remote database using applet

    hi all,
    I want to know how to access remote database using applet,
    Please help me anybody.
    Regards
    Jesu

    If the database is on a public server, you probably can't access it directly (security wise). You can make your applet talk to a server-side application, which makes the database calls on behalf of the applet. But even in an intranet environment this setup is often preferable, because you don't need to distribute a JDBC driver to all your clients.

  • How to access Portal Database ( ORACLE) through webdynpro  java

    Hello experts,
    I  want to <b>access portal database tables</b> ( WCR_USERSTAT,WCR_WEBCONTENTSTAT,WCR_USERFIRSTLOGON )<b> using</b> <b>webdynpro  java</b> application/service . Our portal DB is Oracle , so please tail me some solution for this asap. I had tried using   <u>Portal Activity Report</u> iViews  but that no fulfill  our requirment.
    Regads,
    Laxmi..

    Hi,
    You can use the following link which will help you to resolve the problem:
    /thread/100181 [original link is broken]
    thanks & regards,
    Manoj

  • VB 2008, CR component and MS Acc: how to access with database(not user) pwd

    These are the detail of the query:
    1. MS Access 2003 and later database via OLE DB provide for entry of a u201Cdatabase passwordu201D to provide additional protection.
    2. In VB 2005 and in VB2008 environment I have managed to establish a connection with a database password and open recordsets using ADO connection. See code below.
    Note. stPassword is user password and stDBPassword is database password with the following code:
    With cnn
              'set connection string
              .ConnectionString "Provider=Microsoft.Jet.OLEDB.4.0; Password=" & stPassword & ";Data Source=T:\CPI.mdb;User ID=" & stUser & ";Persist Security Info=False;" & "Jet OLEDB:System database=t:\cpi.mdw;Jet OLEDB:Database Password=" & stDBPassword
              .Open()  
    End With
    3. When using Crystal Reports component supplied with VS 2008 I can only provide USER NAME and USER PASSWORD. No information is available how and where to enter DATABASE PASSWORD to the Crystal Reports component. As a result, Crystal Reports Viewer starts to run. Obviously access is denied because no DATABASE PASSWORD has been provided to the component. A common dialog comes up to enter database password.
    4. User does not necessarily need know the DATABASE password and I am not interested in providing the database password to every user who runs reports. In this project database password serves as a form of protection from tampering with the database structure and contents through the use MS Access to access the database.
    5. Here is the code to demonstrate logon via Crystal Component described above:
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    And then in a sub:
        Dim cnnInfo As ConnectionInfo = New ConnectionInfo()
        'cnnInfo.DatabaseName = cnn.DefaultDatabase
        cnnInfo.UserID = stUser
        cnnInfo.Password = stPassword
    No place to input DATABASE password!!!
    Does anyone know how can I input database password or provide a connection string or maybe ADO connection object which is opened within the project code.

    It seems like it is not possible to set the DB level password with the CR Visual Studio bundled version (as stated in the following KB c2010267). You would need to use the full version, and use the code below:
    Symptom
    A VB .NET application uses Crystal Reports for Visual Studio .NET as the reporting development tool.
    A report is created that connects to a password protected Microsoft Access Database.
    How do you pass a password (for database level security) or a password and user ID (for user level security) at runtime using the different connection methods(Native/ODBC/OLEDB)?
    Resolution
    To pass the database level password or a user level
    userid/password at runtime, use the following code
    sample:
    'Add the following namespaces to the top of the code
    'page
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Dim crReportDocument As New ReportDocument()
    Dim crConnectionInfo as New ConnectionInfo
    Dim crtableLogoninfo As New TableLogOnInfo()
    Dim CrTables As Tables
    Dim CrTable As Table
    crReportDocument = New CrystalReport1()
    With crConnectionInfo
    <**Insert code from below depending on the type of
    connection and the version of Crystal Reports you are
    using**>
    End With
    CrTables = crReportDocument.Database.Tables
    For Each crTable in crTables
    crTableLogonInfo.ConnectionInfo =
    crConnectionInfo
    CrTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    CrystalReportViewer1.ReportSource =
    crReportDocument
    Database Level Security
    " For Native and ODBC connections, use the following
    code:
    .Password = "Password"
    " For OLEDB connections, use the following code:
    .Password = chr(10) + "Password"
    ====================
    NOTE:
    You cannot set a database level password when
    using Crystal Reports for Visual Studio .NET 2002 or
    2003.
    ====================
    User Level Security
    " For ODBC and OLEDB connections, use the following
    code:
    .Password = "Password"
    .UserID = "UserID"
    For ODBC connections, in the ODBC data source, you
    have to point the system database to the appropriate
    MDW file. In addition, click the 'Advanced' button and
    specify the User ID and password.
    ====================
    NOTE:
    You cannot set a user level password when using
    a native connection with Crystal Reports 9.2 and
    Crystal Reports for Visual Studio .NET 2002 or 2003.
    This KB is valid for:
    CRYS REPORTS VS .NET.9.1
    CR FOR VS .NET 2005
    CR FOR VS .NET 2008

  • Accessing smart card through internet

    I want to make an application that will do the following : I want to have a webpage(for example an order form at an e-shop site) to access the smart card at a remote computer over the internet (the customer's pc) and get some information from an array in the card (e.g the shipping address and his name)....Is it possible to do that or the security restrictions (java applet restrictions) will not allow me to ? If so has anybody any ideas of how it could be done? The same opencard commands (e.g sendCommandApdu() ) work for accessing a card through the internet or do I have to use anything different???Thank you ...

    Sir,
    Even I am looking for a similar application Online Banking application
    But in that case the bank has to authenticate the user using some info that the card stores
    How does the bank achieve the same?
    What is the cards role in this regard
    Where does cryptology come into this
    I would be happy top know these details
    Regards
    Kumar

  • How To Access Time Capsule Over Internet?

    Can't seem to figure out how to access the Time Capsule drive over the internet. As far as I know it is all set up. But I have no clue how to access it when I am on the road. Do I do this through Mobile Me?

    Full details here:
    http://forums.dealmac.com/read.php?4,2800627 and http://discussions.apple.com/thread.jspa?threadID=1572371&tstart=31
    Regards
    Paul

  • How to Connect my N79 through Internet on Laptop?

    Hi Friends ,
    i am facing a problem while connecting my N79 through Internet on my laptop . i am using USB Modem for Internet Connectivity. And i want to share this Internet on my N79 through Wireless LAN . i am using Windows Vista . Please tell me how to Configure my WLAN on my laptop . so that i can use it to browse through my N79.
    Please Help Me Guys .....................!!!!!!

    Yes, it can be done.
    1) Enable "Internet Connection Sharing" on the laptop and share the connection that refers to your USB modem.
    2) Ask your ISP what the IP addresses of their nameservers are and make a note of them.
    3) Configure the laptop's wireless adapter in ad-hoc mode and assign it a static address on the wireless network.
    4) Configure the N79 in ad-hoc mode as well, and give it a static address on the wireless network. Enter manual settings telling it to use the IP address of the laptop as its default gateway and to use the IP addresses given to you by your ISP as its nameservers.
    With this, you can use the laptop as your phone's portal to the Internet, but only with your phone. This will only work with one device at a time. If you want to use more than one device at the same time you're better off buying a real wireless router to which you will be able to connect your laptop, your phone and any other wifi-aware device you might have.
    NB: I don't use Windows on my machines and therefore can't give any specific information about doing this. The advanced settings needed for the phone will be described in the manual.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • How to connect 10g database through Enterprise manager???

    Hi All,
    I want to connect the database through Enterprise manager.
    My database is on 10g. Version is 10.1
    Please tell me the procedure to connect the database through E.M.
    Thanks and Regards,
    Prathamesh.

    Are you thinking of the Enterprise Manager supplied with Oracle9i? If yes - it doesn't work quite that way ... and the 9i java OEM is not compatible.
    Use the enterprise manager supplied with the 10g database, called the dbconsole (look for a service or start it using 'emctl start dbconsole') and access it using http://{localhost}:5500/em
    If that doesn't satisfy you, load the updated version of the OEM 9i java standalone from the 10g client disk.

  • Access SmartCard information through Internet ???

    Hi,
    Is it possible to access SmartCard information from
    Web Application(JSP/Servlet) ??
    If not, is there any good recommendation to access the
    SmartCard's information that located in the Client's
    workstation through Internet(Server Side Programming, JSP/Servlet) ???
    Best regards,
    Eric

    I beleive that's what Target.com is using

  • How to access Oracle Database Externally 11gR1 which is in EC2?

    Dear Legends,
    I have migrated my local DB to amazon and everything was working fine, DB was up and running. Now I need to access the DB through SQL Developer or any other tool like. How do I able to access it?
    Example: URL: http://ec2-10-20-30-40.compute-1.amazonaws.com
    PORT: 1523
    SID: SAM
    Internal IP: ip-10-20-30-40-ec2-internal
    Note: I'm not using RDS which is in EC2
    Thanks,
    Karthik

    I resolved it by changing the tnsnames.ora and listener.ora files adding the external web entry url "ec2-10-20-30-40.compute-1.amazonaws.com" and now am able to access it externally.

  • Accessing Oracle database in internet

    Hi folks,
    I would like to know whether i can access Oracle apps database thru' internet. Please let me know if you have any links which provides such supports!!
    thanks
    Vinoth

    iSQLPLUS also - just depends on exactly what you are trying to achieve.
    DbConsole, Oracle Forms & Reports, in fact practically every product connects 'thru' the internet these days.

Maybe you are looking for

  • Need help adding 2nd hard drive

     Hey guys whats up. I need some advice about adding a second hard drive. Right now i have a WD 320GB 7200 RPM IDE Ultra ATA100 Hard Drive running on the primary IDE. Everything is fine but i wanted to get a smaller and faster drive for the operating

  • Price during creating of Draft/Purchase Order fails in SP01 PL04

    Hi, we try to port an add-on of us to B1 2005 SP01 PL04. The Add-On create a Draft/Purchase Order by DI Api. Doing so works fine in 2005A SP00 PL08 and PL11. Now we try to run it at SP01 and we got wrong prices in the DB. Here some sample code in C#:

  • I lost all of my information updating to iOS 6 on my IPhone 4. How do I get it back?

    I lost all of my information updating to iOS 6 on my IPhone 4. How do I get it back?

  • IWeb site suddenly won't publish to MobileMe

    Have been publishing my iWeb site successfully with iLife '09 and Snow Leopard for a couple of months now. Yesterday I added a page and published successfully. Then I made changes to some already published pages. These pages are mostly photos and I c

  • Service tax Condition record

    Hi, I have maintained Service tax condition record for the combination of Vendor/Plant/Material group. If I create PO without Item category 'd',  system picking the condition record. But if i prepare with Item category 'd', system is not picking the