Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by yfatgo

  1. yfatgo

    multiple statments in mysql

    lets say I have a command of "insert into tableX values('a',b)" a = 'a;' b = '1); delete from tableX where a in (1,2,3' as a,b are imput from a user I'll get: insert into tableX values('a;',1); delete from tableX where a in (1,2,3) I don't want to replace ; with ;\ cause the command will not...
  2. yfatgo

    multiple statments in mysql

    Hello, I'm using php version 4.0 with mysql 5.0.24 connecting to the db using mysql_connect and running the statments using mysql_query. I want to know how to restrict the queries so it won't allow sending multiple statments. (I know that if I put '\' after the end of the first statment the...
  3. yfatgo

    using php with java package

    I don't get it, what is the connection between the applet to the php - java package problem ? im not using applet in my java code, and the java classes are workinh just fine, the problem is that the php doesn't get the java package line written in each class. Yfat.
  4. yfatgo

    using php with java package

    Hello, I have a project of java compiled as a package. when i try to get to this files from php it get stuck, if i delete the package code it can work, but than not all of the project is available. i tried to pack the java classes into a jar file, and put it's path in the php.ini, but now the...
  5. yfatgo

    using varchar list with a select query

    using the COALESCE function im creating a string to have a list of users sperated by a comma, now how can i use it in a sql select query ? meaning : I want to do a select query like that : select * from tb1 where UserId in @UserList where the UserList is the list i got with the COALESCE...
  6. yfatgo

    Reporting Services book

    very easy to read and understand : "Reporting Services in action" by Teo Lachev foreword by Brian Welcker
  7. yfatgo

    sum a field from sub query

    Hello, im trying to get the percentage of one field, meaning, to divide the field in the sum of that field. the thing. the fields are also getting by a query : select Query, Frequency, Frequency/sum(Frequency) as FreqPerc, Clicks, BuyClicks from ( SELECT top 10 Query, SUM(Frequency) AS...
  8. yfatgo

    dynamic adding control to page

    Hello, im trying to add textbox to an html page. the text box is added according to the records in the db so it should be dynamicly. I added it by the <Input type = TextBox....> command but when i went through the request.form later it didn't appear. also, when i added it by TextBox a i got a...

Part and Inventory Search

Back
Top