Kombat Posted March 18, 2011 Share Posted March 18, 2011 Does anyone have a suggestion on how to format the following on multiple lines: _SQLite_Exec($hDB, "CREATE TABLE Administrator,AdministratorName,Password);") I tried: _SQLite_Exec($hDB, "CREATE TABLE Administrator_ AdministratorNumber, _ AdministratorName,_ Password);") but the editor rejects it. Link to comment Share on other sites More sharing options...
AdmiralAlkex Posted March 18, 2011 Share Posted March 18, 2011 You can't "continue-line" in the middle of something. This should work better: _SQLite_Exec($hDB, "CREATE TABLE Administrator" _ & "AdministratorNumber," _ & "AdministratorName,"_ & "Password);") .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Link to comment Share on other sites More sharing options...
Kombat Posted March 19, 2011 Author Share Posted March 19, 2011 Does anyone have a suggestion on how to format the following on multiple lines:_SQLite_Exec($hDB, "CREATE TABLE Administrator,AdministratorName,Password);")I tried:_SQLite_Exec($hDB, "CREATE TABLE Administrator_AdministratorNumber, _AdministratorName,_Password);")but the editor rejects it.Thank you, that was the information I needed. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now