EVGA

mysql anyone?

Author
finiousfingers
iCX Member
  • Total Posts : 377
  • Reward points : 0
  • Joined: 2008/12/10 12:16:01
  • Status: offline
  • Ribbons : 2
2014/02/11 05:51:18 (permalink)
I am trying, for the first time, to make a inventory database.
 
That said I am looking for: 
1. Location table, to say where something is 
2. Bin table, to say what bin contains item and ties back to locations 
3. Parts table, to say what part it is, cost, price, description, part number and ties to what Bin its in, and what location has it. 
4. Inventory, to say how many are in each bin and ties to parts and bin. 
5. Users, for people that can access it and 2 levels, 1 as User and 1 as Admin 

I want to make a website to add and change data and maybe an app for a phone. 
Ability to scan a barcode to do inventory would be nice as well. 

So my questions: 
1. my fkey for each of the tables should be the same type? like Vchar(10) then I can do the same name in each of the tables that I want to tie? 

so... 
LocationID - PK 
Location - FK tied to BinLoc in Bin Table 
BinID - PK 
BinLoc - FK to Location 
BinNum - FK to Part and inventory 

So what are some ideas on how to tie this together?
[font="verdana, arial, helvetica, sans-serif; font-size: 12px; line-height: 23px"] 

+1 My Rig Please and Thank You

CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
    
Antivirus programs are like condoms. 
If you don't use them right then they won't work no matter how nice they look or feel. 

 
#1

22 Replies Related Threads

    srtie4k
    FTW Member
    • Total Posts : 1589
    • Reward points : 0
    • Joined: 2010/11/05 05:11:13
    • Location: New Hampster
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/11 06:04:05 (permalink)
    Sounds like you've pretty much got it. Each piece of data (or item, if you want to speak in terms of the object oriented approach) should be atomic, that is is reliant on nothing but itself. Then each item within that "category" should have a "parent" primary key which is a unique value unto itself. I prefer to use an integer that specifies each one uniquely, i.e. 0001, 0002, 0003. Then to tie certain items together, you use a foreign key within that item that points to the primary key of another item. So for instance:
     
    Location
    [PK] LocID (int4)
    [FK] BinID (int4)
    LocDescription (varchar25)
     
    Bin
    [PK] BinID (int4)
    [FK] PartID (int4)
    BinDescription (varchar25)
     
    Part
    [PK] PartID (int4)
    PartDescription (varchar25)
     
     
    When you start using the statements to query everything, the foreign key of one object will tie to the primary key of another in the query. They need to have the same datatype.
     
     

    Gaming Rig:
    Corsair Vegeance C70, Swiftech H220, Intel i7-3770K @ 4.5GHz (1.24V), Asus Sabertooth Z77, Corsair AX860, 16GB Corsair Vegeance DDR3-1600 CL9 1.35V, EVGA GTX 670 FTW, SanDisk Extreme 240GB SSD, Dell 2408WFP, Corsair K70 Cherry Red, Corsair M65, Logitech Z-5500 5.1
    Steambox/HTPC:
    Lian Li PC-Q01A, AMD A10-7800, ASRock FM2A88X-ITX, Seasonic ST30SF, 8GB Samsung DDR3-1600 @ 1866, Samsung 840 Evo 250GB MSATA SSD
     
    Affiliate Code: KKDMX98FNV
    #2
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/11 11:23:04 (permalink)
    Thank you Srtie4k I appreciate your time and efforts with me.
     
    So I have created the DB with the following 4 tables.
     
    CREATE TABLE `Inventory` (
    `InventoryID` int(4) NOT NULL,
    `LocationId` int(4) DEFAULT NULL,
    `BinNumber` varchar(5) DEFAULT NULL,
    `PartId` int(4) DEFAULT NULL,
    PRIMARY KEY (`InventoryID`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
     
    CREATE TABLE `Location` (
    `LocId` int(4) NOT NULL,
    `Active` set('A','I') DEFAULT 'A',
    `Type` varchar(45) DEFAULT NULL,
    `Name` varchar(45) DEFAULT NULL,
    `Description` varchar(45) DEFAULT NULL,
    `BinNumber` int(4) DEFAULT NULL,
    PRIMARY KEY (`LocId`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
     
    CREATE TABLE `Part` (
    `PartId` int(4) NOT NULL,
    `PartNumber` varchar(15) DEFAULT NULL,
    `PartDesc` varchar(45) DEFAULT NULL,
    `Weight` decimal(4,2) DEFAULT NULL,
    `Cost` decimal(4,2) DEFAULT NULL,
    `Price` decimal(4,2) DEFAULT NULL,
    `Update` datetime DEFAULT NULL,
    PRIMARY KEY (`PartId`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
     
    CREATE TABLE `Users` (
    `UserId` int(4) NOT NULL,
    `Active` set('A','I') DEFAULT 'A',
    `First` varchar(45) DEFAULT NULL,
    `Last` varchar(45) DEFAULT NULL,
    `Phone` varchar(15) DEFAULT NULL,
    `Level` set('U','A') DEFAULT 'U',
    PRIMARY KEY (`UserId`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
     

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #3
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/11 11:35:45 (permalink)
    Thank you for the help Srtie4k,
     
    Oh I see the BinNumber in the location is different. I will fix.
    I think I still need a Bin Table to show the bins, but I am not sure, open to suggestions.
     
    so if I want to show 
    10 Sparkplugs are in Bin 4A
    3 Cans of grease are in Bin 3C
    then I do FK like
    Inventory LocationID FK -> Location LocId
    Inventory BinNumber FK -> Location BinNumber (or is this where I need a BinNumber table to PK and FK to?)
    and I think I need another column in the part table to link to the bin or inventory.

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #4
    srtie4k
    FTW Member
    • Total Posts : 1589
    • Reward points : 0
    • Joined: 2010/11/05 05:11:13
    • Location: New Hampster
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/11 11:47:25 (permalink)
    No Bin table?
     
    I'm not sure exactly what your end goal is, but you should look into the process of normalization. If you can understand the concepts behind it, it will help you break down your system into it's component parts (i.e. tables) and the relationship between each of them.
     
    It looks like you're on the right track, but you might need to normalize further to avoid possible update, insertion, and deletion anomalies. 

    Gaming Rig:
    Corsair Vegeance C70, Swiftech H220, Intel i7-3770K @ 4.5GHz (1.24V), Asus Sabertooth Z77, Corsair AX860, 16GB Corsair Vegeance DDR3-1600 CL9 1.35V, EVGA GTX 670 FTW, SanDisk Extreme 240GB SSD, Dell 2408WFP, Corsair K70 Cherry Red, Corsair M65, Logitech Z-5500 5.1
    Steambox/HTPC:
    Lian Li PC-Q01A, AMD A10-7800, ASRock FM2A88X-ITX, Seasonic ST30SF, 8GB Samsung DDR3-1600 @ 1866, Samsung 840 Evo 250GB MSATA SSD
     
    Affiliate Code: KKDMX98FNV
    #5
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/11 11:52:41 (permalink)
    ok redone
     
    CREATE TABLE `Inventory` (
    `InventoryID` int(4) NOT NULL,
    `LocationId` int(4) DEFAULT NULL,
    `BinNumber` varchar(5) DEFAULT NULL,
    `PartId` int(4) DEFAULT NULL,
    PRIMARY KEY (`InventoryID`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
     
    CREATE TABLE `Location` (
    `LocId` int(4) NOT NULL,
    `Active` set('A','I') DEFAULT 'A',
    `Type` varchar(45) DEFAULT NULL,
    `Name` varchar(45) DEFAULT NULL,
    `Description` varchar(45) DEFAULT NULL,
    `BinNumber` varchar(5) DEFAULT NULL,
    PRIMARY KEY (`LocId`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
     
    CREATE TABLE `Part` (
    `PartId` int(4) NOT NULL,
    `PartNumber` varchar(15) DEFAULT NULL,
    `PartDesc` varchar(45) DEFAULT NULL,
    `Weight` decimal(4,2) DEFAULT NULL,
    `Cost` decimal(4,2) DEFAULT NULL,
    `Price` decimal(4,2) DEFAULT NULL,
    `Update` datetime DEFAULT NULL,
    PRIMARY KEY (`PartId`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
     
    CREATE TABLE `Users` (
    `UserId` int(4) NOT NULL,
    `Active` set('A','I') DEFAULT 'A',
    `First` varchar(45) DEFAULT NULL,
    `Last` varchar(45) DEFAULT NULL,
    `Phone` varchar(15) DEFAULT NULL,
    `Level` set('U','A') DEFAULT 'U',
    PRIMARY KEY (`UserId`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
     
    CREATE TABLE `Bin` (
    `BinId` INT(4) NOT NULL,
    `BinNumber` VARCHAR(5) NULL,
    `Quantity` INT(5) NULL,
    `Updated` TIMESTAMP NULL,
    PRIMARY KEY (`BinId`));
     

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #6
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/11 11:53:44 (permalink)
    Going to add some data in so I can try to do a view or something and see if that helps me figure out my relationships better
     
     

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #7
    srtie4k
    FTW Member
    • Total Posts : 1589
    • Reward points : 0
    • Joined: 2010/11/05 05:11:13
    • Location: New Hampster
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/11 12:03:32 (permalink)
    Only thing I'd do differently is in your Inventory, you should make your Bin FK point to BinID rather than BinNumber.
     
    Also, I think you need to relook at your relationship between location and inventory or bin. Does an inventory have a location, or does a bin have a location? I think that tying the bin to a location makes more logical sense than tying an entry in inventory to a location.

    Gaming Rig:
    Corsair Vegeance C70, Swiftech H220, Intel i7-3770K @ 4.5GHz (1.24V), Asus Sabertooth Z77, Corsair AX860, 16GB Corsair Vegeance DDR3-1600 CL9 1.35V, EVGA GTX 670 FTW, SanDisk Extreme 240GB SSD, Dell 2408WFP, Corsair K70 Cherry Red, Corsair M65, Logitech Z-5500 5.1
    Steambox/HTPC:
    Lian Li PC-Q01A, AMD A10-7800, ASRock FM2A88X-ITX, Seasonic ST30SF, 8GB Samsung DDR3-1600 @ 1866, Samsung 840 Evo 250GB MSATA SSD
     
    Affiliate Code: KKDMX98FNV
    #8
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/11 12:08:36 (permalink)
    Great point, thank you!
    ok inserted this, and now looking at your suggestions.
    INSERT INTO `OSHInv`.`Bin`
    (`BinId`,
    `BinNumber`,
    `Quantity`)
    VALUES
    ('0001','1A','25')
    INSERT INTO `OSHInv`.`Inventory`
    (`InventoryID`,
    `BinNumber`)
    VALUES
    ('0001','1B')
    INSERT INTO `OSHInv`.`Location`
    (`LocId`,
    `Active`,
    `Type`,
    `Name`,
    `Description`)
    VALUES
    ('0001','A','Warehouse','Main','Primary Warehouse');
    INSERT INTO `OSHInv`.`Part`
    (`PartId`,
    `PartNumber`,
    `PartDesc`,
    `Weight`,
    `Cost`,
    `Price`)
    VALUES
    ('0001','SPK023','Platinum Sparkplugs','.02','2.66','6.56');
    INSERT INTO `OSHInv`.`Users`
    (`UserId`,
    `Active`,
    `First`,
    `Last`,
    `Level`)
    VALUES
    ('0001','A','Greg','Arhart','A');

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #9
    srtie4k
    FTW Member
    • Total Posts : 1589
    • Reward points : 0
    • Joined: 2010/11/05 05:11:13
    • Location: New Hampster
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/11 12:42:27 (permalink)
    Looking good.
     
    If you want to make things even easier on your part, you can also make the primary key auto increment, so when you insert a new record, the primary key (i.e. "xxxID") gets automatically generated without the need for checking what the last entered PK value is. That will save a lot of time.

    Gaming Rig:
    Corsair Vegeance C70, Swiftech H220, Intel i7-3770K @ 4.5GHz (1.24V), Asus Sabertooth Z77, Corsair AX860, 16GB Corsair Vegeance DDR3-1600 CL9 1.35V, EVGA GTX 670 FTW, SanDisk Extreme 240GB SSD, Dell 2408WFP, Corsair K70 Cherry Red, Corsair M65, Logitech Z-5500 5.1
    Steambox/HTPC:
    Lian Li PC-Q01A, AMD A10-7800, ASRock FM2A88X-ITX, Seasonic ST30SF, 8GB Samsung DDR3-1600 @ 1866, Samsung 840 Evo 250GB MSATA SSD
     
    Affiliate Code: KKDMX98FNV
    #10
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/12 07:23:51 (permalink)
    So here is how its sitting now.
    I think it would be the inventory goes in the bin and the bin goes into the location
    so would it be Inventory.BinNumber FK -> Bin.BinNumber, Location.BinNumber?
    or wont that work?
    I currently have no FK set yet. So I can modify as needed easily.
     
     
    CREATE TABLE `Bin` (
    `BinId` int(4) NOT NULL AUTO_INCREMENT,
    `BinNumber` varchar(5) DEFAULT NULL,
    `Quantity` int(5) DEFAULT NULL,
    `Updated` timestamp NULL DEFAULT NULL,
    PRIMARY KEY (`BinId`)
    ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
    CREATE TABLE `Inventory` (
    `InventoryID` int(4) NOT NULL AUTO_INCREMENT,
    `LocationId` int(4) DEFAULT NULL,
    `BinNumber` varchar(5) DEFAULT NULL,
    `PartId` int(4) DEFAULT NULL,
    PRIMARY KEY (`InventoryID`)
    ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
    CREATE TABLE `Location` (
    `LocId` int(4) NOT NULL AUTO_INCREMENT,
    `Active` set('A','I') DEFAULT 'A',
    `Type` varchar(45) DEFAULT NULL,
    `Name` varchar(45) DEFAULT NULL,
    `Description` varchar(45) DEFAULT NULL,
    `BinNumber` int(4) DEFAULT NULL,
    PRIMARY KEY (`LocId`)
    ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
    CREATE TABLE `Part` (
    `PartId` int(4) NOT NULL AUTO_INCREMENT,
    `PartNumber` varchar(15) DEFAULT NULL,
    `PartDesc` varchar(45) DEFAULT NULL,
    `Weight` decimal(4,2) DEFAULT NULL,
    `Cost` decimal(4,2) DEFAULT NULL,
    `Price` decimal(4,2) DEFAULT NULL,
    `Update` datetime DEFAULT NULL,
    PRIMARY KEY (`PartId`)
    ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #11
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/12 07:30:26 (permalink)
    Oh I see I have 3 BinNumbers listed 2 with VarChar5 and one with Int4, I think that I might have one to many and can drop the int4 column.

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #12
    srtie4k
    FTW Member
    • Total Posts : 1589
    • Reward points : 0
    • Joined: 2010/11/05 05:11:13
    • Location: New Hampster
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/12 08:08:34 (permalink)
    I think if I were setting this schema up, I'd do it this way:
     
     

    Attached Image(s)


    Gaming Rig:
    Corsair Vegeance C70, Swiftech H220, Intel i7-3770K @ 4.5GHz (1.24V), Asus Sabertooth Z77, Corsair AX860, 16GB Corsair Vegeance DDR3-1600 CL9 1.35V, EVGA GTX 670 FTW, SanDisk Extreme 240GB SSD, Dell 2408WFP, Corsair K70 Cherry Red, Corsair M65, Logitech Z-5500 5.1
    Steambox/HTPC:
    Lian Li PC-Q01A, AMD A10-7800, ASRock FM2A88X-ITX, Seasonic ST30SF, 8GB Samsung DDR3-1600 @ 1866, Samsung 840 Evo 250GB MSATA SSD
     
    Affiliate Code: KKDMX98FNV
    #13
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/12 09:21:14 (permalink)
    How do you get it to show the tables like that? You using SQL or MySql?
    I am not seeing that view in my workbench program.
     

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #14
    srtie4k
    FTW Member
    • Total Posts : 1589
    • Reward points : 0
    • Joined: 2010/11/05 05:11:13
    • Location: New Hampster
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/12 09:34:46 (permalink)
    In MySQL, it's in the Data Modeling section. You can create an EER Model from either a diagram or create a diagram from existing or new tables.

    Gaming Rig:
    Corsair Vegeance C70, Swiftech H220, Intel i7-3770K @ 4.5GHz (1.24V), Asus Sabertooth Z77, Corsair AX860, 16GB Corsair Vegeance DDR3-1600 CL9 1.35V, EVGA GTX 670 FTW, SanDisk Extreme 240GB SSD, Dell 2408WFP, Corsair K70 Cherry Red, Corsair M65, Logitech Z-5500 5.1
    Steambox/HTPC:
    Lian Li PC-Q01A, AMD A10-7800, ASRock FM2A88X-ITX, Seasonic ST30SF, 8GB Samsung DDR3-1600 @ 1866, Samsung 840 Evo 250GB MSATA SSD
     
    Affiliate Code: KKDMX98FNV
    #15
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/12 10:32:21 (permalink)
    Oh found the modeler, and trying to figure out how to export my db and import... maybe create script.
     

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #16
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/02/12 10:38:20 (permalink)
    like so?
     

    Attached Image(s)


    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #17
    James_L
    CLASSIFIED Member
    • Total Posts : 4336
    • Reward points : 0
    • Joined: 2009/07/29 12:27:56
    • Status: offline
    • Ribbons : 46
    Re: mysql anyone? 2014/08/02 06:28:18 (permalink)
    XrayMan
     
    That should solve the OP's problem.      ;)


    Especially months later after it's more than likely resolved.

     

    #18
    XrayMan
    Insert Custom Title Here
    • Total Posts : 73000
    • Reward points : 0
    • Joined: 2006/12/14 22:10:06
    • Location: Santa Clarita, Ca.
    • Status: offline
    • Ribbons : 115
    Re: mysql anyone? 2014/08/02 15:22:53 (permalink)
    James_L
    XrayMan
     
    That should solve the OP's problem.      ;)


    Especially months later after it's more than likely resolved.




    The OP never did say if it's resolved, but we can deduce that the OP has either solved the problem, or just gave up on it.       ;)

                My Affiliate Code: 8WEQVXMCJL
     
            Associate Code: VHKH33QN4W77V6A
     
                 
     
     
                      
     
     
     
              
     
       
     
               
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     



     
     
     
     
     
     &nbsp
    #19
    James_L
    CLASSIFIED Member
    • Total Posts : 4336
    • Reward points : 0
    • Joined: 2009/07/29 12:27:56
    • Status: offline
    • Ribbons : 46
    Re: mysql anyone? 2014/08/02 17:27:52 (permalink)
    XrayMan
    James_L
    XrayMan
     
    That should solve the OP's problem.      ;)


    Especially months later after it's more than likely resolved.




    The OP never did say if it's resolved, but we can deduce that the OP has either solved the problem, or just gave up on it.       ;)


    More than likely gave up on it. I'd be surprised given the complexity of what was needed if that was resolved quickly or easily.

     

    #20
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/08/03 11:18:12 (permalink)
    No, never got it resolved. Feel like I am maybe out of my depth here.
    I want to do this for my friend, 1 to help him out and 2 to learn something new and fun.
    I'm the solo it guy for the most part. So I can only devote so much brain juice at a time. Hehe

    I will look at the new updates provided and see if I can get further.

    I did ask a friend to quote this and he came back with 25k. Blink.

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #21
    James_L
    CLASSIFIED Member
    • Total Posts : 4336
    • Reward points : 0
    • Joined: 2009/07/29 12:27:56
    • Status: offline
    • Ribbons : 46
    Re: mysql anyone? 2014/08/03 14:53:59 (permalink)
    I can certainly understand the quote. Essentially they were asked to design and implement a complete inventory control system along with a remote app for check in/check out of parts and control.

     

    #22
    finiousfingers
    iCX Member
    • Total Posts : 377
    • Reward points : 0
    • Joined: 2008/12/10 12:16:01
    • Status: offline
    • Ribbons : 2
    Re: mysql anyone? 2014/09/15 08:03:41 (permalink)
    ill chalk it up to gave up on this for now. I just don't have the time to devote to it. Thought I could create something simple to do this, but I just don't have the SQL skills to do this.
     
    thanks for the help though, and sorry to have wasted anyones time on this. 
     
    Maybe when I can create a basic one I can come back and ask again for some advice.
     

    +1 My Rig Please and Thank You

    CPU: i7 980X OCd to 4.4Ghz | Board: EVGA X58 FTW3 | Power: EVGA SuperNova 1300 G2 | RAM: G-Skill Perfect Storm 2000 mhz. @8-8-8-21 | Case: Haf 932 | Cooler: Corsair H110 | GPU: 770 4GB x2 SLI    
        
    Antivirus programs are like condoms. 
    If you don't use them right then they won't work no matter how nice they look or feel. 

     
    #23
    Jump to:
  • Back to Mobile