SQL-Lite create Table?

I am wanting to save a string of text in a sql database - lite which is called "message1."  I press save button to call this code in my interlocutor.

URI myURI = URI.create("file:///SDCard/flash.db");
DatabaseFactory.open(myURI);
Statement st = d.createStatement( "CREATE TABLE Restaurant (Experience TEXT)" );
Dialog.alert("Here1!");
st.prepare();
st.execute();
st.close();  

Statement st1 = d.createStatement("INSERT INTO Restaurant(Experience) VALUES ('message1')");
st1.prepare();
st1.execute();
st1.close();
d.close();
Dialog.alert("Your info was saved!");

I can't even my Dialog statement to appear?  I do something wrong in the line where I create the table?

Statement st = d.createStatement ('CREATE TABLE Restaurant (experience TEXT)');

Because when I move the dialog statement before this line... I can see the dialog box

Database db;
URI myURI = URI.create("file:///SDCard/flash.db");
db = DatabaseFactory.open(myURI);

Statement st= db.createStatement("CREATE TABLE 'Restaurant' ( "
                    + "'Experience' TEXT)");
            st.prepare();
            st.execute();
            st.close();

            Statement st1 = db.createStatement("INSERT INTO Restaurant(Experience) VALUES ('Message1')");
            st1.prepare();
            st1.execute();

db.close();

I checked the code and its working very well.

----------------------------------------------------------
feel free to press the congratulations on the left side to thank the user who has helped you.
Please mark as resolved messages if you found a solution.

Tags: BlackBerry Developers

Similar Questions

  • Create table for users

    Hi all

    11.2.0.3.10

    AIX6

    I created a user SCOTT in our database.

    I have grant connect, resource to scott; because it is easier to do it this way.

    DBA, I wish that I'm the only one to create all the tables of scott, and he cannot create for himself.

    What is the effective way to do this? Is this order enough? > REVOKE CREATE a TABLE FROM SCOTT;

    Thank you

    MK

    RP gave you the right answer if you want to restrict users to create table, do not give them privilege resource.  See this demo:

    Connected to:

    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

    With partitioning, OLAP, Data Mining and Real Application Testing options

    SQL > create user test identified by the test.

    Created by the user.

    SQL > grant connect to test;

    Grant succeeded.

    SQL > connect test/test;

    Connected.

    SQL > create table tab1 (a number);

    create table tab1 (a number)

    *

    ERROR on line 1:

    ORA-01031: insufficient privileges

    SQL > connect sys/pw as sysdba

    Connected.

    SQL > grant create table to test;

    Grant succeeded.

    SQL > connect test/test;

    Connected.

    SQL > create table tab1 (a number);

    Table created.

    SQL > connect sys/pw as sysdba

    Connected.

    SQL > revoke create table test;

    Revoke succeeded.

    SQL > connect test/test;

    Connected.

    SQL > create table tab2 (a number);

    create the table tab2 (a number)

    *

    ERROR on line 1:

    ORA-01031: insufficient privileges

    SQL >

    Concerning

    Girish Sharma

  • CREATE TABLE to another OWNER/SCHEMA and in a different TABLESPACE?

    I am connected to a user of the SYSTEM. Now, I want to create a table of aaa. The owner of this table should not be SYSTEM but user KARL. and STORAGE space should not be SYSTEM but the tdtc TABLESPACE (existing).

    As far as I know I can do this by running the following command:

    CREATE TABLE KARL.aaa (an INTEGER,...) Tttt TABLESPACE;

    Regarding the TABLESPACE parameter, I'm not sure. Is it possible to return a user Karl TABLE in a TABLESPACE that is not assigned to him?

    In addition, I have another problem.
    I have a script with hundreds of CREATE TABLE, ALTER TABLE + CREATE INDEX DDL statements.
    Each of them are not prefixed with schema/owner and a TABLESPACE clause.

    I can put a single statement at the top of the script somehow that such Oracle
    to use
    -Karl OWNER as a schema/owner for all DDL stements
    -Thomas TABLESPACE as TABLESPACE for all DOF stements
    ?

    In MYsql, there is a statement «use < database >» Is soemthing similar to Oracle?

    Thank you
    Peter

    Yes... you can do. For example, a user who has a secret password that you do not want to give... as a schema of the application. User B needs to make paintings/objects in A schema and you want to follow this as user B. First configure Oracles Fine grain auditing and then grant "connect via" user A to user B as follows:
    -----

    SQL> create user b identified by abc123
      2    quota unlimited on users;
    
    User created.
    SQL> grant create session to b;
    
    SQL> create user a identified by abc123
      2    quota unlimited on users;
    
    User created.
    
    SQL> grant create table
      2      , create session
      3     to a;
    
    Grant succeeded.
    
    SQL> alter user a grant connect through b;
    
    User altered.
    
    SQL> connect b[a]/abc123@a486
    Connected.
    
    SQL> show user
    USER is "A"
    SQL> create table a.my_proxy_table
      2  ( c1 number
      3  , c2 varchar2(50)
      4  , c3 date
      5  );
    
    Table created.
    

    -----
    See I have connected using the syntax "username [proxyuser]." Also note that user B is by proxy user has, as evidenced by my order 'show user '. The connection through can be granted/revoked as needed without disclosing A goes to B. In addition, your audit tables or xml logs will follow the fact that user B created the table a.my_proxy_table.

    Hope this helps,
    John

  • Creating Tables with a Script

    I am trying to create tables using a script, but it seems that the consecutive statements in the script will not run - someone ' one can tell me what I need to use the syntax?

    ****************************************************************************
    Here is my script - I use SQL-Plus:

    CREATE TABLE parts
    (region_id NUMBER
    NOT NULL CONSTRAINT Region_id_nn
    , region_name VARCHAR2 (25)
    )

    CREATE TABLE countries
    (country_id TANK (2)
    NOT NULL CONSTRAINT Country_id_nn
    , country_name VARCHAR2 (40)
    region_id NUMBER
    CONSTRAINT Country_c_id_pk
    PRIMARY KEY (country_id)
    )
    INDEX OF THE ORGANIZATION

    Here's what I touch in:

    SQL > get c:\oracle\test.txt

    Here is the error that comes out:

    1 parts of CREATE TABLE
    2 (region_id NUMBER
    3 region_id_nn of CONSTRAINT NOT NULL
    4, region_name VARCHAR2 (25)
    5)
    6 countries in CREATE TABLE
    7 (country_id TANK (2)
    8 country_id_nn of CONSTRAINT NOT NULL
    9, country_name VARCHAR2 (40)
    10, region_id NUMBER
    11, CONSTRAINT country_c_id_pk
    12 PRIMARY KEY (country_id)
    13)
    14 * ORGANIZATION INDEX
    15 run;
    CREATE TABLE countries
    *
    ERROR on line 6:
    ORA-00922: missing or not valid option
    ****************************************************************************
    If trim down the script - just 1 create table command, none of the semicolons, this works:

    Script:

    CREATE TABLE parts
    (region_id NUMBER
    NOT NULL CONSTRAINT Region_id_nn
    , region_name VARCHAR2 (25)
    )

    Key in:
    SQL > get c:\oracle\test.txt
    1 parts of CREATE TABLE
    2 (region_id NUMBER
    3 region_id_nn of CONSTRAINT NOT NULL
    4, region_name VARCHAR2 (25)
    5 *)
    SQL > execute;

    Receive:

    1 parts of CREATE TABLE
    2 (region_id NUMBER
    3 region_id_nn of CONSTRAINT NOT NULL
    4, region_name VARCHAR2 (25)
    5 *)

    Table created.
    ****************************************************************************
    adding a semicolon between the instructions in create table does not solve this problem - anyone got any ideas?

    Thank you

    -Tom

    Please see this for more information on the GET sqlplus command.

    http://download.Oracle.com/docs/CD/A97630_01/server.920/a90842/ch13.htm#1009882

    Get command Loads a host operating system file into the SQL buffer.
    
    *The operating system file should contain a single SQL statement or PL/SQL block*.
    The statement should not be terminated with a semicolon. If a SQL*Plus command or
    more than one SQL statement or PL/SQL block is loaded into the SQL buffer from an
    operating system file, an error occurs when the RUN or slash (/) command is used to
    execute the buffer.
    

    I hope it is clear now. So if you want to run a script that may contain more then one of SQL statements, create a file * .sql, put all the instructions, complete with a semicolon and run as follows:

    SQL > @script_name.sql

  • Create table form another table in different schema throwing error when dynamic sql

    Hello

    With the help of 11.2.0.3 and was following the issue.

    To create a table in a schema (b) using data from another schema (b)

    If independent run in sqlplus create works OK but same sql in dynamic sql block saying the table or view does not exist.

    SQL even in dynamic sql

    {code}

    v_sql: =' create table new_table in select * from schemab.table_name where...';

    run immediately (v_sql);

    [code}

    Other tables work fine.

    Any ideas - don't want to grant all the schemaa.table schema b if can avoid.

    Thank you

    You run the immediate execution in an anonymous block or a stored procedure?  If it is a stored procedure, then as others have said, the owner of the procedure must have select privileges on granted directly schemab.table_name.

    Another possibility, which would be the case for a stored procedure, or an anonymous block is that your code is something like:

    v_sql: =' create table new_table in select * from schemab.table_name where...';

    immediately run v_sql;

    Select count (*) in the l_count new_table;

    who will fail at compile time because new_table does not exist.

    When you create objects using dynamic sqly you dynamic sql user to reference them in the block of code.

    John

  • SQL authentication provider - create table script

    Hi all!
    I would use the SQL provider for my Web application authentication. I can't find the script to create tables of users/roles used by the provider.
    Can you suggest me a link where I can download?
    Thank you
    Frank

    Hi Frank,.

    Configure the SQL authenticator:

    Start Oracle XE DB and open propmt SQL to run commands below:

    CREATE TABLE USERS)
    U_NAME VARCHAR (200) NOT NULL,
    U_PASSWORD VARCHAR (50) NOT NULL,
    U_DESCRIPTION VARCHAR (1000))
    ;
    ALTER TABLE USERS
    ADD CONSTRAINT PK_USERS
    PRIMARY KEY (U_NAME)
    ;
    CREATE TABLE GROUPS)
    G_NAME VARCHAR (200) NOT NULL,
    G_DESCRIPTION VARCHAR (1000) NULL)
    ;
    ALTER TABLE GROUPS
    ADD CONSTRAINT PK_GROUPS
    PRIMARY KEY (G_NAME)
    ;
    CREATE TABLE GROUPMEMBERS)
    G_NAME VARCHAR (200) NOT NULL,
    G_MEMBER VARCHAR (200) NOT NULL)
    ;
    ALTER TABLE GROUPMEMBERS
    ADD CONSTRAINT PK_GROUPMEMS
    (PRIMARY KEY)
    G_NAME,
    G_MEMBER
    )
    ;
    ALTER TABLE GROUPMEMBERS
    ADD CONSTRAINT FK1_GROUPMEMBERS
    FOREIGN KEY (G_NAME)
    REFERENCE (G_NAME) GROUPS
    ON DELETE CASCADE

    Generally, customers can add users directly in DB with help commands below:

    insert into USERS (U_NAME, U_PASSWORD, U_DESCRIPTION) values ('system', 'weblogic', 'user admin');
    insert into GROUPS (G_NAME, G_DESCRIPTION) values ('Administrators', 'Administrators');
    insert into values('Administrators','system') GROUPMEMBERS (G_NAME, G_MEMBER);

    But in this case is not encrypted password then, either you can add users via the console or WLST script to be stored in encrypted form.

    We had performed above commands just to check that the user that is stored directly in the DB gets properly authenticated or not configured SQL authenticator as below

    Now start weblogic admin server and console access to create the data source by the navigation Services-> JDBC-> data sources

    Create the data source named SqlDS

    JNDI: SqlDS

    Type of DB: Oracle

    : DB driver Oracle Thin XA

    Name of the data base: XE

    DB host:

    Port: 1521

    DB user:

    DB password:

    Even the rest of the configuration and click test Configuration. If its success click on next and it targets to "AdminServer.

    Click Finish and activate chnages

    Now navigate to the areas of security-> myrealm-> suppliers

    Click new and supply the names of SqlAuthenticator and select Type of SQLAuthenticator

    Now click on newly created provider and make the indicator of control as "sufficient".

    Go to the specific page of provider:

    1. check on cleartext passwords enabled.

    2. provide a data name source: SqlDS

    Keep the rest of the parameters it is and save this configuration. It will ask you to restart the management server.

    Now, again navigate areas of security-myrealm-> users & groups >

    User created directly in the DB control is listed in the table with SqlAuthenticator, once its list, go ahead and add users as below

    B. Cretae users using the administration console:

    Sign in to the administration console

    Access areas of security-myrealm-> users & groups >

    Click the users tab and try to create the new user

    User name:

    Select authentication provider: SqlAuthenticator

    User password:

    Once the table DB check creating user, this user added with password encypted musted

    C. create multiple users using WLST script:

    File Navigave of $DOMAIN_HOME/bin and run the file setDomainEnv as below:

    UNIX:. ./setDomainEnv.sh (don't forget to put two points before /)

    Windows: setDomainEnv.cmd

    Now, change script depending on your environment below and run as suggested in step 3:

    Connect('weblogic','weblogic123','t3://localhost:7001')
    Edit()
    startEdit(-1,-1,'false')
    serverConfig()
    CD('/SecurityConfiguration/base_domain/Realms/MYREALM/AuthenticationProviders')
    ls()
    CD ('SqlAuthenticator')
    cmo.createUser ('vaishali', 'weblogic123', 'SQLuser')

    cmo.createUser ('pavashe', 'weblogic123', 'SQLuser')
    Edit()
    stopEdit('y')

    NOTE: Change username, password, and ADMIN_URL in 1st line.

    Replace the domain name "base_domain" by your domain online no.: 5

    Authenticator name change SQL online no: 6 by your authenticator name

    Next lines create users. You need to add however to users, you need to create programmatically.

    Syntax: cmo.createUser ('user_name', 'user_password', 'user_description')

    Now, to save these commands in a file with the extension .py and run as below:

    # java weblogic. WLST create_user.py

    If your script does not have to try running each command separately. For this session WLST beginning as below:

    # java weblogic. WLST

    Now run above commands in the script. You will be able to debug if something went wrong during execution of script.

    Kind regards
    Kal

  • Create table or MV in PL/SQL

    Hey everybody,



    It is probably a very simple question, but I can't seem to create a table in a PL/SQL procedure. I have something like this:



    PROCEDURE TEST_PROC IS

    BEGIN

    RUN IMMEDIATELY "CREATE TABLE TEST_TBL AS SELECT * FROM DUAL';"

    END TEST_PROC;



    I get an error of privs when I try to execute the proc. I also tried everything first create a view, materialized in a very similar way, but it also did not work.



    I did some research and on a blog, they created a table by using the statement of full table create for example CREATE TABLE NAME (COLUMN1 TYPE1, etc...);



    But I want to create the table using the clause 'AS' and the definition of a query.



    Is there a specific privilege that I have to be able to do this? It seems simple enough.



    Thank you!



    -Joe

    No, you need (again) CREATE TABLE privilege. CREATE ANY TABLE is to create arrays in other patterns.

  • Issue of database SQL-lite

    If I created a sql database - lite in my application and the database is created when the application starts, how I would write a condition statement to not recognize the creation of database code?

    Is there a better way to do what I'm trying to do here I saw more?

    Here's my code for creation of data base that I want to only be invoked if the database is not present and must be created:

                      try
            {
                URI myURI = URI.create("file:///SDCard/flash.db");
                d = DatabaseFactory.create(myURI);
                d.close();
            }
            catch(Exception e)
            {
    
            }
    
            try
            {
                URI myURI = URI.create("/SDCard/flash.db");
                d = DatabaseFactory.open(myURI);
                Statement st = d.createStatement("CREATE TABLE 'Restaurant' (  'Experience' TEXT, 'Date' TEXT)");
                st.prepare();
                st.execute();
                st.close();
                d.close();
            }
            catch(Exception e)
            {
    
            }
    

    You must use FileConnection, look at this code example.

            url="file:///SDCard/Databases/flash.db";
            if(f==ok)
            {
                try
                {
                    FileConnection fc=(FileConnection)Connector.open(url, Connector.READ_WRITE);
                    if(!fc.exists())
                    {
                        URI uri=URI.create("file:///SDCard/Databases/flash.db");
                        d=DatabaseFactory.create(uri);
                    }
                    else
                    {
                        Dialog.alert("File Exits! Proceed");
                    }
                    d.close();
                }catch(Exception e)
                {
                    System.out.println(e.getMessage());
                    e.printStackTrace();
                }
       }
    

    ------------------------------------------------------------------------------------
    Kudo press to say thank you to the developer.
    Also, press accept it as a button when you got the Solution.

  • Sql-Lite problem

    I looked at the documentation and many examples, but I can't seem to get my departure from the database sql - lite.

    I created the database in the screen here:

    URI myURI = URI.create("file:///SDCard/flash.sqlite");
    
    d = DatabaseFactory.create(myURI);
    
    d.close();
    

    I tried to register information in the database here:

    URI myURI = URI.create("file:///SDCard/flash.sqlite");
     DatabaseFactory.open(myURI);
    
     Statement st = d.createStatement( "CREATE TABLE 'Restaurant' (  'Experience' TEXT,  )" );
    
     d.createStatement("INSERT INTO Restaurant(Experience) " +
     "VALUES ('message1')");
    
     st.prepare();
     st.execute();
     st.close();
     d.close();
    
     Dialog.alert("Your info was saved!");
    

    Any ideas what im doing wrong?

    Thank you

    Scientist

    It should work

    BCZ I work on dat only.

    You need to do sumthing wrong;

    Just check your code.

    Debug your code you find error wl.

    Try like dat.

    URI myURI = URI.create("file:///SDCard/database/flash.db");
    
  • SQL LITE

    Hello everyone, I'm wanting to create a sql database lite for my application to store and retrieve data.  I know very little on the subject and I was wondering if someone can point me in the direction of some great examples or documentation?

    Thank you

    Scientist

    Hello

    SQL Lite is easy for the Blackberry.

    Here I am attaching some of the classes may b that will help you.

    public URI myURI;
    myURI = URI.create("file:///SDCard/BlackBerry/Database/"
                        + "DatabaseName.db");
                this.setMyURI(myURI);
        public URI getMyURI() {
            return myURI;
        }
    
        public void setMyURI(URI myURI) {
            this.myURI = myURI;
        }
    
    //Now generate one class which is having all database table fields
    //if you are using 3 tables den u have to make 3 classes
    
    Example
    
    public class Schema {
        Database db;
    
        public Schema() {
                URI newURI = UiApplication.getUiApplication().getMyURI();
                db = DatabaseFactory.open(newURI);
                Statement user= db.createStatement("CREATE TABLE 'User' ( "
                        + "'ID' INTEGER PRIMARY KEY AUTOINCREMENT," + "'Name' Text," + "'Password' Text," + "'Email' Text)");
                user.prepare();
                user.execute();
                user.close();
    //2nd schema
        ......
                db.close();
    
        }
    
    }
    

    In your main class where you want to insert/change/remove data write these codes

    Database dbLink;
    URI newURI = UiApplication.getUiApplication().getMyURI();
    dbLink = DatabaseFactory.create(newURI);
    dbLink.close();
    Schema s = new Schema();
    db = DatabaseFactory.open(newURI);
    String Username = "BB";
    String Password = "BlackBerry";
    String Email = "";
    
        Statement st = db.createStatement("INSERT INTO User(Name,Password,Email)"
                    + " VALUES ('"
                    + Username
                    + "','"
                    + Password + "','" + Email + "')");
        st.prepare();
        st.execute();
    
        db.close();
    

    ----------------------------------------------------------
    feel free to press the congratulations on the left side to thank the user who has helped you.
    Please mark as resolved messages if you found a solution.

  • Can we create table in RMS

    Hello

    I have just one request. Is it possible to create a table as an employee with several fields such as EmployeeiD, Name, age, etc... in RMS?

    If so then someone can show me how its done?

    Thank you
    Saket

    Four options are available for storage on BB devices:

    (a) RMS - you must serialize

    (b) PersistentStore - storage object-oriented, so that a conversion BOF tables needed

    (c) file connection - necessary serialization

    (d) tables - Sybase iAnywhere, for all current models or SQL-Lite, for OS 5.0 only.

    You can find more information on all these on this forum, in the resources section of the loads blackberrydeveloper.com and take a look on the Sybase website too.

    However if you store only a small amount of personal data, I recommend the persistent store.  Download the developer's Guide, there is a good chapter there on persistent data storage, that describes.  .

  • DB tools create Table

    Hello.. I got this error when trying to create a database

    Conn Execute.vi-> DB tools create Table.vi--> CreateDatabase.viException occurred in the Microsoft Office Access database engine: syntax error in the statement CREATE TABLE in Conn Execute.vi-> DB tools create Table.vi-> CreateDatabase.vi

    I can't open your vi, but in many cases, the syntax error is caused by the invalid table or field names (reserved words, spaces or invalid characters). In this case, you can change the names; Alternatively, you can frame them square brackets: [my_column_name].

    If you open the DB create Table.vi-> Conn Execute.vi block diagram, you can enter the full text of the SQL query and post, so we can take a look.

  • Question SQL-Lite

    Hello, I was wondering if it would be the right way to implement a database SQL-LITE and if I had to submit my application code runs correctly?

    URI myURI = URI.create("file:///SDCard/flash.db");
    d = DatabaseFactory.create(myURI);
    d.close();
    

    I want to save a database to the SD card and was hoping that this was accomplished over there without any other necessary implementation.  For example whenever I have rn that on the Simulator, I need to create a directory for this database.  What it will be just as easy as this presentation and the database is stored on the sd card?

    Thank you

    Scientist

    Yes, this create a file named flash.db in the SD card, but outside the records.

    To save the file in the folder document from SD card, you can use

    "file:///SDCard/Blackberry/documents"+fileName;

    Hope this helps.

    ------------------------------------------------------------------------------------
    Kudo press to say thank you to the developer.
    Also, press accept it as a button when you got the Solution.

  • FREELISTS and FREELIST GROUPS of CREATE TABLE

    My oracle 10g, create table statement is below:

    CREATE TABLE S005. Test

    (

    AAA char (1)

    )

    PCTFREE 0

    STORAGE)

    FREELISTS 10

    FREELIST GROUPS 20

    )

    LOGGING

    NOCACHE

    NOPARALLEL

    NOMONITORING;

    After performing this sql, I have a query table USER_TABLES but FREELISTS and FREELIST_GROUPS fields show nothing.

    In my view, FREELISTS value must be 10, and FREELIST_GROUPS should be 20. How to retrieve these values?

    Thank you very much

    SAMS - Oracle FAQ

  • Create table ORA-01031: insufficient privileges

    SQL > indicate user USER is 'TEST_RPT.

    SQL > CREATE TABLE mytest (id NUMBER); - it does not work

    CREATE TABLE mytest (id NUMBER)

    * ERROR at line 1: ORA-01031: insufficient privileges

    SQL > CREATE TABLE TEST_RPT.mytest (id NUMBER).

    Table created. SQL >


    SQL > select * from session_privs;

    PRIVILEGE

    ----------------------------------------

    ANY PROCEDURE DEBUG

    DEBUGGING SESSION CONNECT

    CREATE INDEXTYPE

    OPERATOR TO CREATE

    CREATE THE TYPE

    CREATE THE TRIGGER

    CREATE PROCEDURE

    CREATE SEQUENCES

    CREATE VIEW

    CREATE SYNONYM

    CREATE THE CLUSTER

    CREATE TABLE

    UNLIMITED TABLESPACE

    ALTER SESSION STATEMENT

    CREATE SESSION

    Try this:

    SELECT USER, SYS_CONTEXT('USERENV','CURRENT_SCHEMA') FROM DUAL;

    The two identical values? CURRENT_SCHEMA is what will determine the owner of the table you create, if you do not specify an owner.

    This can be changed by

    ALTER SESSION SET CURRENT_SCHEMA = whatever_you_want_it_to_be;

Maybe you are looking for

  • The amount of space used by the content of the trash?

    There is probably a really simple answer to this, but I can't understand it. Is there a way to tell how much space the contents of the trash again? Thank you very much.

  • Titles on lost iPhone

    Hi guys,. I am from the Viet Nam. My friend just lost an iPhone 6s. He had used to find my iPhone and reaching the thief, but ultimately can not have the evidence to prove who is the thief and that the iPhone lost forever. I wish Apple to put more so

  • HP Photo essential 3.5 work anymore and say internet explore checks to the solution.

    Original title: HP Photo essential 3.5 When I open photo 3.5 essential, once a minute or so, it stops to work and say internet Explorer checks for the solution. So basically, when I go there to do she anything close.

  • Dell vostro 200 2nd hard drive

    Currently, I am trying to upgrade my son vostro 200 slim with more memory and 2nd hard drive. What I have to buy exactly. I see on here some people claim you can buy the screws and some people need a cable or two. Before I open, I want to make sure I

  • Group residential market, having problems with non-windows devices

    I have Windows7 Ultimate on my desktop PC. I'm Tournai on homegroup and join my laptop running Windows 7 Pro. I have a printer wireless on my home network, but also a Synology NAS of DS213air for backups. My laptop has no problem after turning on hom